timcadieux
Programmer
Hi folkz, we were told to make sure we had handled all hackable possibilies. I was told to check that any querysting requests were handled and to ensure that querystring % were also handled.
Using
I can can't seem to prevent an error when someone types id=%
??
Using
Code:
iRecordId = Request.QueryString("id")
If IsNumeric(iRecordId) Then
iRecordId = CLng(iRecordId)
Else
iRecordId = 0
End If
??