473,804 Members | 3,229 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to set the referring url

hello,

this there any var to set the referring url manualy?

is there anything at all so i can put in this var my own value, like
when i paste an address on the firefox url and the page will set some
value i want and it won't be blank

thanks in advance.

Mar 31 '07 #1
3 3055
AviraM said the following on 3/31/2007 5:16 PM:
hello,

this there any var to set the referring url manualy?
No. It would render it useless if you could.
is there anything at all so i can put in this var my own value
In what variable? The document.referr er property? No.
like when i paste an address on the firefox url and the page
will set some value i want and it won't be blank
Start from the page it is wanting to be referred from and you don't have
that problem.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javas cript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Mar 31 '07 #2
begin On Sat, 31 Mar 2007 14:16:23 -0700, AviraM wrote:
this there any var to set the referring url manualy?
Not with JavaScript AFAIK. But some web-proxies come with such a feature,
WWWoffle being an example. It's a great privacy feature indeed, since
nobody gets a chance to track the movements your doing in the web.
is there anything at all so i can put in this var my own value, like
when i paste an address on the firefox url and the page will set some
value i want and it won't be blank
WWWoffle e.g. allows to put a fixed value there or the page beeing
requested. (The same applys to user-agent.) I'm maintaining some
commercial LANs and WWWoffle hides all internals from the
world-wide-watch. - But as I said, that's not a JavaScript issue.
--
Matthias

/"\
\ / ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
X - AGAINST M$ ATTACHMENTS
/ \
Apr 1 '07 #3
On Apr 1, 12:22 pm, Matthias Watermann <l...@mwat.dewr ote:
begin On Sat, 31 Mar 2007 14:16:23 -0700, AviraM wrote:
this there any var to set the referring url manualy?

Not with JavaScript AFAIK. But some web-proxies come with such a feature,
WWWoffle being an example. It's a great privacy feature indeed, since
nobody gets a chance to track the movements your doing in the web.
is there anything at all so i can put in this var my own value, like
when i paste an address on the firefox url and the page will set some
value i want and it won't be blank

WWWoffle e.g. allows to put a fixed value there or the page beeing
requested. (The same applys to user-agent.) I'm maintaining some
commercial LANs and WWWoffle hides all internals from the
world-wide-watch. - But as I said, that's not a JavaScript issue.

--
Matthias

/"\
\ / ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
X - AGAINST M$ ATTACHMENTS
/ \
thanks both of you :)
you helped me

Apr 2 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
9891
by: Jenkins | last post by:
I have a page with frames. The left frame is a list of urls. The main frame is loaded based on the url that was clicked in the left frame. Is there a way for the main frame to tell which url was clicked in the left frame? I'd like to avoid having to use a name/value pair in the links in the left frame, which I'm currently doing. I'd prefer to use something similar to $_server('REFERER') but I can't find anything that would list the...
2
1469
by: Patrick Robinson | last post by:
Can anyone explain how i can refer to another package that is at the same 'level' in the directory structure as the one doing the referring. i.e given the package structure: - basedir | | package1 package2 how can i gain access to a class within package2 from within a source file from package1 -- i only seem to b able to access classes within
4
2182
by: MLH | last post by:
Somehow, I seem to be able to refer to combo-box controls in 2 distinctly different ways. A combo-box on an Access 97 form named TagCountyChooserBox seems can be referenced these ways... Forms!! and Forms!! where TagCounty is the datasource fieldname of the
3
2223
by: George | last post by:
VS.NET 2002\Web\VB I am trying to get the referring URL for one of my pages using this: Request.UrlReferrer.ToString Page 1 has a link to Page 2. I click on the link in Page 1, and go to Page 2. Page 2 is where I am trying to get the referring URL. However, instead of getting the URL of Page 1 (the referring page), I get the URL of the Page 2 (the current page), instead.
2
2332
by: buran | last post by:
Dear ASP.NET Programmers, I want to store the referring page of an .aspx page so that I can redirect the user back to the referring page if needed. I am using the following code snippet but receiving Object reference not set to an instance of an object error. The code is as follows: If Not Page.IsPostBack Then Viewstate("ReferrerURL") = Request.UrlReferrer.ToString() LoadData()
3
3134
by: Dan Sikorsky | last post by:
How can I get the Querystring passed to the Referring Page from its referrer? I don't want the querystring coming to my current page. I want the querystring that came to the referring page, so that I can check for the existance of a parameter value in that previous querystring.
0
898
by: tollhund | last post by:
Alright, what I am basically trying to do is forward a site based on the referring site. For example a domain that I cannot control is linking a pop-up to a page on my website. I would like to be able to redirect this pop-up to another webpage based on the referring site. But, I would like to keep this pop-up working within my own sites without be redirected as well. I am posting this in the VB group because the page is written in VB,...
1
2980
by: pradeep_TP | last post by:
Hello everybody, I have created a web site which has a simple user control (LogoDisplay.ascx). This is part of a separate project called CommonControls. I have a main Project "MainProj" from which I am referring to "CommonControls". I have a web page Default.aspx page in MainProj that has a UserControl "Header.ascx" Files for "MainProj" Project file are under folder
5
3252
by: Christina | last post by:
I can't seem to find any reference for grabbing the title of the referring page, which I want to use for creating a link. i.e. document.write ("Our thanks to <a href='"+document.referrer+"'>" +referring page title +"<a>"). I have looked into using location.history also. This is probably a standard thing, but through all the forums and searches I only find a mishmosh of things referring to using frames, a different scripting language, etc....
2
2296
by: paladin | last post by:
We have a strange situation where some of the referring URL's are missing from our log files. This is on .NET application on IIS 6.0. Here is what is happening: Page a.aspx has a form that POST's to a.aspx. If there are errors with the form information, then a.aspx is displayed with an error message to the user. If all the information is correct then it is redirected (response.redirect) - GET to page b.aspx. In this GET to b.aspx (and
0
9708
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10340
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10085
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9161
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7623
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5662
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4302
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3827
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.