I send out html email on user activation with token that I encode with rawurlencode(). So - link appears in email like this:
I have the following code <a href=\"snippet:add?code=<?php echo rawurlencode($snippet->snippet_content); ?>Save snippet</a>
I am using a Response.Redirect in global.asax.cs. When the page loads the RawUrl property contains an encoded directory of some kind.
In an asp.net web forms application we get an error message with \"A potentially dangerous Reques开发者_开发知识库t.RawUrl\" sometimes, but I cannot find the source of it.