Tagged Questions
The rawurl tag has no wiki summary.
4
votes
1answer
110 views
php url encode issue
I send out html email on user activation with token that I encode with rawurlencode().
So - link appears in email like this:
<a ...
3
votes
8answers
5k views
ASP.NET: Get *real* raw URL
In ASP.NET, is there any way to get the real raw URL?
For example, if a user browse to "http://example.com/mypage.aspx/%2F", I would like to be able to get "http://example.com/mypage.aspx/%2F" rather ...
2
votes
2answers
599 views
replace entites in rawurlencode i.e. < > "
I have the following code
<a href="snippet:add?code=<?php echo rawurlencode($snippet->snippet_content); ?>Save snippet</a>
where
'$snippet = <a ...
1
vote
2answers
2k views
What are possible reasons for “Potentially dangerous Request.RawUrl”?
In an asp.net web forms application we get an error message with "A potentially dangerous Request.RawUrl" sometimes, but I cannot find the source of it.
What are the possible reasons for this ...
0
votes
1answer
53 views
Alternate for Request.RawUrl in javascript/jquery?
I was using a Request.RawUrl to get the URL after localhost. i.e if my url is localhost:52482/something/somethingelse, then this used to return /something/somethingelse.
I accessed this in a base ...
0
votes
1answer
536 views
Response.Redirect in Application_AuthenticateRequest RawUrl
I am using a Response.Redirect in global.asax.cs.
When the page loads the RawUrl property contains an encoded directory of some kind.
...