D
D. Shane Fowlkes
For some reason, I'm being told to declare "IsNull". Surely I'm doing
something wrong. I'm basically seeing if someone clicked a link which
passes a variable in the querystring like MyPage.aspx?id=5
This is in a Page_Load rountine:
If IsNull(Request.QueryString("id")) Then
intID = CInt(Request.QueryString("id"))
lblEventDetails.Text = "You clicked event number " & intID & "."
End If
Compiler Error Message: BC30451: Name 'IsNull' is not declared.
something wrong. I'm basically seeing if someone clicked a link which
passes a variable in the querystring like MyPage.aspx?id=5
This is in a Page_Load rountine:
If IsNull(Request.QueryString("id")) Then
intID = CInt(Request.QueryString("id"))
lblEventDetails.Text = "You clicked event number " & intID & "."
End If
Compiler Error Message: BC30451: Name 'IsNull' is not declared.