If Request.QueryString("stat") <> Nothing Then
Session("thestat") = Request.QueryString("stat").ToString
Else
Session("thestat") = ""
End If
If Request.QueryString("themail") <> Nothing Then
Session("themail") = Request.QueryString("mail").ToString
Else
Session("themail") = ""
End If
chaaraan
Contributor
2170 Points
484 Posts
Re: Boolean error for request.querystring
May 06, 2012 11:02 AM|LINK
Try this
If Request.QueryString("stat") <> Nothing Then
Session("thestat") = Request.QueryString("stat").ToString
Else
Session("thestat") = ""
End If
If Request.QueryString("themail") <> Nothing Then
Session("themail") = Request.QueryString("mail").ToString
Else
Session("themail") = ""
End If