Ask a Question related to ASP.NET General, Design and Development.
-
Yoyo #1
UrlReferrer issue
Hi all!
I am developing an intranet app and have a problem with the
Request.UrlReferrer object.
I use it to keep a "linkstack" of all pages visited on the app to let the
user surf thru pages (the IE toolbar is not visible).
I tested it ok on intranet and internet with win2k clients. The problem
which happens with XP clients is that SOMETIMES the
Request.UrlReferrer.AbsoluteUri is nothing, leaving the site clueless on
what to put on the linkstack... Is this a bug, or sometimes UrlReferrer CAN
be nothing (when?). Is there any other way i can track referrer (ie
previous) page visited?
Thanx to anyone will answer
Bye
Yoyo
Yoyo Guest
-
4GL V7.32 issue
OK, testing i4GL V7.32 on HP-UX 11i, IDS9.40. The following code is coredumping: (this is a cut down version of a bigger file, to the point where... -
problems with Request.UrlReferrer
i have found a problem when using Request.UrlReferrer. if i call the page using a javascript function, the referrer is null... i need to call a... -
IIS 5.1 and ASP.net issue
I'd suggest posting to a DotNet group...this one is for ASP (classic asp, not ASPX) :} --... -
Request.UrlReferrer and SSL certificate
I have a website that checks the Request.UrlReferrer variable. This routine was working ok, until we created a ssl certificate on the server. Now,... -
Request.UrlReferrer is nothing
I have a website that checks for the correct referer and it was working fine until we implemented and ssl certificate (https). Now, the... -
Vidar Petursson #2
Re: UrlReferrer issue
Hi
There is no guarantee of referrer
[url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/referrer.asp[/url]
also using script to set location will kill referrer
Are you only tracking pages within system... You could use
Request.ServerVariables["SCRIPT_NAME"].toString();
to track user...
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Yoyo" <x@x.com> wrote in message
news:mGSQa.58956$qa5.1299868@news2.tin.it...CAN> Hi all!
>
> I am developing an intranet app and have a problem with the
> Request.UrlReferrer object.
>
> I use it to keep a "linkstack" of all pages visited on the app to let the
> user surf thru pages (the IE toolbar is not visible).
>
> I tested it ok on intranet and internet with win2k clients. The problem
> which happens with XP clients is that SOMETIMES the
> Request.UrlReferrer.AbsoluteUri is nothing, leaving the site clueless on
> what to put on the linkstack... Is this a bug, or sometimes UrlReferrer> be nothing (when?). Is there any other way i can track referrer (ie
> previous) page visited?
>
> Thanx to anyone will answer
>
> Bye
>
> Yoyo
>
>
Vidar Petursson Guest
-
Yoyo #3
Re: UrlReferrer issue
Thanx to both for answering,
I solved my problem using
ServerVariables("SCRIPT_NAME") for the page and
ServerVariables("QUERY_STRING") for the parameters sent.
Bye
Yoyo
Yoyo Guest



Reply With Quote

