Forum Moderators: open
<%
' Shows the member.
strSQL = "Select * From members where username='"&Fixbug(Request.Querystring("view"))&"'"
Set ObjRS = ObjConn.Execute(strSQL)IF ObjRS.Eof then
Response.Write "No members."
End if
%>
I get this error:
Microsoft VBScript runtime error '800a000d'Type mismatch: 'Fixbug'
/com/userview.asp, line 17
If I take away "Fixbug" in the code, I get this error:
Microsoft VBScript runtime error '800a01a8'Object required: ''
/com/userview.asp, line 18
What is the problem? I don't understand a thing, because this script is working just fine on another server.
I'm so greatful for any help I can get! Thanks in advance!