I have the below code. I am trying to send information to a subroutine, I
am getting an Object Required Error.
<input type="button" name="pSearch" value="Search"
onclick="Displa yRecords()">
Then in my ASP page I have this
Sub DisplayRecords( )
dim conn
dim strsql
dim mycount
....
....
End Sub
I think I am doing this correctly.
am getting an Object Required Error.
<input type="button" name="pSearch" value="Search"
onclick="Displa yRecords()">
Then in my ASP page I have this
Sub DisplayRecords( )
dim conn
dim strsql
dim mycount
....
....
End Sub
I think I am doing this correctly.
Comment