IE error message

  • Thread starter Thread starter Amateur
  • Start date Start date
A

Amateur

Dear Sirs
I have an ASP Page named "contactsalllist.asp"
If I view it on the IE I receive an error message :

Line: 74
Char: 1
Error: 'db65 select_button' is null or not an object
Code: 0
URL:
http://????????????????/ASP/contact...lointerval=25&cmd=Find&oldcurpage=2&curpage=3

I have no idea what that means - The problem is that the ASP page, even
there are more than 300 records in, is showing, from record 30, always only
record 30.

Line 74 is as follows:


Code:
If salespersonid_Operator = "OR" then
salespersonid_Operator_ORvar=" checked"
salespersonid_Operator_ANDvar=""
Else
salespersonid_Operator_ORvar=""
salespersonid_Operator_ANDvar=" checked"
End if

Can please someone help me?
Many thanks in advance
Klaus
 
In View source, in the browser, what are lines 70 through to 78? There
should be a reference to 'db65 select_button' in these lines, or they may
refer to an external JavaScript file.

The error message is more like one from a JavaScript error than a vbScript
error.

The records displayed will be those generated by the SQL statement.
 
Back
Top