Quote:
quote:Originally posted by katie456
// Loop through recordset and write stock details out to page
if( adoRecordSet.Eof == false )
{
|
above isn't vbscript
try this (including greg's remark; adding <%=...%> into somthing that is already vbscript does not work, it only works in plain html)
if not adoRecordSet.EOF then
contractID = adoRecordSet("contractorID");
Response.Cookies("IsValid") = "Yes"
Response.Redirect("memberpage.asp?contractorID=" & contractID)
end if