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 working fine.

pg1.aspx
<a href='#' onclick=\"window.open('www.abc.com/pg2.aspx', 'windowname2', 'width=1014, height=709, screenX=1, left=1, screenY=1, top=1, status=no, menubar=no, resizable=no, toolbar=no'); return false;\">

pg2.aspx
string url_refer = Request.UrlReferrer.ToString();

UrlReferrer is NULL

I googled for the solution. but none of them are leading to the solution i want.

My problem is if the window is with no menubar, status or toolbar, UrlReferrer is NULL

if not, UrlReferrer has the previous page's URL.

I also tried url_refer = Request.ServerVariables["HTTP_REFERER"].ToString(); instead of string url_refer = Request.UrlReferrer.ToString();.

the result is the same.

Any solution?

link|improve this question

feedback

2 Answers

There's no easy answer to this - in general, the UrlReferrer is a browser-specific behaviour. Chrome, for instance, can process this differently than Internet Explorer.

If you are doing the referring yourself then you'll be best off passing a querystring parameter or using session state to identify the referring URL.

link|improve this answer
feedback
up vote 0 down vote accepted

I m not sure.. but I found out..

Session are not working if we call a new page using Javascripts.

I was told that all session values are reset on a new page which is called using javascripts.

As an alternate for my question, I used QueryString.

I really dun want the users to see the URL but I already hide the URL with javascript.

So, i hav no problem using querystring, rite?

Does anyone has better solution?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.