Tagged Questions

0
votes
2answers
153 views

URL Referer not working on pop up windows

I have two pages namely www.abc.com/pg1.aspx and www.abc.com/pg2.aspx pg1.aspx response.redirect("www.abc.com/pg2.aspx"); pg2.aspx string url_refer = Request.UrlReferrer.ToString(); UrlReferrer is ...
0
votes
3answers
1k views

Response.Redirect with Different Referrer

I've got the following piece of code in an aspx webpage: Response.Redirect("/Someurl/"); I also want to send a different referrer with the redirect something like: Response.Redirect("/Someurl/", ...