I receive the following error when there is no value for querystring. (I mean like index.asp?ID=).
Microsoft VBScript runtime error '800a000d'
Type mismatch: '[string: ""]'
index.asp, line 10
I tried converting NULL value to something else with the following code. It did not work.
MEMBERID = Request.QueryString("ID")
If MEMBERID = "" or MEMBERID = 0 Then
MEMBERID = Session("MEMBERID")
End If