Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

preventing hacking

Status
Not open for further replies.

timcadieux

Programmer
May 25, 2005
129
BE
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
Code:
	iRecordId = Request.QueryString("id")
		If IsNumeric(iRecordId) Then
			iRecordId = CLng(iRecordId)
		Else
			iRecordId = 0
		End If
I can can't seem to prevent an error when someone types id=%

??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top