I've got vbScript between the <head> and <body>
BLAH BLAH BLAH...
DIM recCount
'objRS.MoveLast
'IF Not objRS.EOF THEN
recCount = 0
'Do UNTIL objRS.EOF
if objRS.RecordCount>0 then
Then within numerous <td>'s I have:
<td><% Response.Write "f_req_1st = " & objRS("f_req_1st") %></td>
<%
I've tried to put the following after </body> and before </html> to no avail. What do I really need to do?
'recCount = recCount + 1
'objRS.MoveNext
'Loop
ELSE
Response.Write "Sorry, there are no records in our database."
END IF
objRS.Close
objConn.Close
%>
</htm>
BLAH BLAH BLAH...
DIM recCount
'objRS.MoveLast
'IF Not objRS.EOF THEN
recCount = 0
'Do UNTIL objRS.EOF
if objRS.RecordCount>0 then
Then within numerous <td>'s I have:
<td><% Response.Write "f_req_1st = " & objRS("f_req_1st") %></td>
<%
I've tried to put the following after </body> and before </html> to no avail. What do I really need to do?
'recCount = recCount + 1
'objRS.MoveNext
'Loop
ELSE
Response.Write "Sorry, there are no records in our database."
END IF
objRS.Close
objConn.Close
%>
</htm>