Click to See Complete Forum and Search --> : Errors


KusumAftar
07-16-2007, 03:56 AM
Please do help me.

Am getting this error again n again.
Error Type:
(0x80020009)
Exception occurred.
/Bsc/form.asp, line 128


if rs("FirstName")=fn and rs("LastName")=ln then--------------->line 128

N the coding are like this

dim fn,ln
fn=request.form("txtFName")
ln=request.form("txtLName")

if rs("FirstName")=fn and rs("LastName")=ln then----->line 128

response.write "<center>"
response.write "<font color='#663333' size='3'> "
response.write "You have already been registered <p>"
response.write "</font>"

response.write"<a href='login.asp'>"
response.write"<font color='#660000'>"
response.write"Proceed to Login"
response.write "</font>"
response.write "</center>"

else

kusum

KusumAftar
07-16-2007, 03:57 AM
please do help me a bit earlier

buntine
07-16-2007, 06:04 AM
Take another look at your SQL query and the table(s) in your database it draws data from.

Also make sure the recordset is still open and active. Google the particular error for common causes.

Cheers,
Andrew