I'm getting the error "A potentially dangerous Request.QueryString value was detected from the client" relating to the following URL:
The id part is an encrypted string that has also been passed to the Server.UrlEncode method to make it safe as part of a URL so what can I do to prevent this? I really don't want to turn off ValidteRequest for this web form, but I do need to pass this encrypted string to it.
Code:
contact.aspx?id=t63ONOALoPYjbYmGBjmSDg%3d%3d&log=true
The id part is an encrypted string that has also been passed to the Server.UrlEncode method to make it safe as part of a URL so what can I do to prevent this? I really don't want to turn off ValidteRequest for this web form, but I do need to pass this encrypted string to it.