Please help me my company asked me to update the website.
What I'm asking is that if you click on the image that it pops out and you can see the BIG Picture.
Can any 1 please help me.
What I'm asking is that if you click on the image that it pops out and you can see the BIG Picture.
Can any 1 please help me.
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../Connections/SMEI.asp" --> <% var SMEI = Server.CreateObject("ADODB.Recordset") SMEI.ActiveConnection = MM_SMEI_STRING SMEI.Source = "SELECT * FROM Project" SMEI.CursorType = 0; SMEI.CursorLocation = 2; SMEI.LockType = 1; SMEI.Open(); var SMEI_numRows = 0; %> <!--#include file="../Connections/smei.asp" --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>: SMEI PROJECTS :</title> <style type="text/css"> <!-- .style3 { font-size: 24px; color: #000066; font-family: "Trebuchet MS"; font-weight: bold; } .style4 {font-family: "Trebuchet MS"} --> </style> </head> <body> <form name="form1" method="post" action=""> <p class="style3">Our Projects </p> <% If smei.eof = True Then response.write "<div align='center'><font face='verdana' color='white'>No Projects Found" response.write "<br>" Else %> <% Dim counter1 Counter1 = 0 While ((Repeat1__numRows <> 0) AND (NOT Smei.EOF)) Counter1 = Counter1 + 1 Response.write "<span class='style8'><b>Candidate Number " Response.write counter1 Response.write "</span></b>" %> <table width="565" border="1"> <tr> <td width="136"><span class="style4">Client</span></td> <td width="205"><label></label> <%=(SMEI.Fields.Item("Client").Value)%></td> <td width="202" rowspan="5"><%=(SMEI.Fields.Item("Image").Value)%></td> </tr> <tr> <td><span class="style4">Project</span></td> <td><%=(SMEI.Fields.Item("Project").Value)%></td> </tr> <tr> <td><span class="style4">Project Scope </span></td> <td><%=(SMEI.Fields.Item("Project_scope").Value)%></td> </tr> <tr> <td><span class="style4">Contract Value </span></td> <td><%=(SMEI.Fields.Item("Contact Value").Value)%></td> </tr> <tr> <td><span class="style4">Completion</span></td> <td><%=(SMEI.Fields.Item("Completion_date").Value)%></td> </tr> </table> <% Repeat1__index=Repeat1__index+1 Repeat1__numRows=Repeat1__numRows-1 Smei.MoveNext() Wend end if %> </form> <p> </p> <p class="style4" align="center"> </p> </body> </html> <% SMEI.Close(); %> <% smei.Close() %>
Comment