473,386 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Query String from src

Hello,

I was wondering if you can get the info from the query string in a
server-side javascript tag?

Here's what I'm trying to do
In the head of page A
....
<script language="JavaScript" src="script.js?id=test</script>
....
And in my script.js file
....
getArgs();

function getArgs() {
var args = new Object();
var query = location.search.substring(1);
var pairs = query.split('&');
for(var i = 0; i < pairs.length; i++) {
var pos = pairs[i].indexOf('='); "name=value".
if (pos == -1) continue;.
var argname = pairs[i].substring(0,pos);
var value = pairs[i].substring(pos+1);
args[argname] = unescape(value);
}
alert (args.id);
}
....

I get the alert, but is displays "undefined".

Can this be done?

Thanks,

dstefani
Jul 23 '05 #1
8 2166
On Sat, 15 May 2004 12:06:50 GMT, dstefani wrote:
I was wondering if you can get the info from the query string in a
server-side javascript tag?
Yes. (*server-side*?? No.
But I don'y think you mean that)
Here's what I'm trying to do


Here is a (bad) example with some good
links to threads with tips right here..
<http://www.physci.org/test/003url/index.html?url=http://mybiz.com/&when=now>

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 23 '05 #2
I think I need to clarify...

I would like to know if this is possible...
Sending a query string from this tag:

<script language="JavaScript" src="script.js?id=test"</script>

Can the src script recognize the query string?
I can do it perfectly with an <a href="page.html?id=test">, but I can't
get it to work as noted in the src="script.js?id=test"
Here is whats in my js script, it works fine for a link.

Thanks,

dstefani

getArgs();

function getArgs() {
var args = new Object();
var query = location.search.substring(1);
var pairs = query.split('&');
for(var i = 0; i < pairs.length; i++) {
var pos = pairs[i].indexOf('=');
if (pos == -1) continue;
var argname = pairs[i].substring(0,pos);
var value = pairs[i].substring(pos+1);
args[argname] = unescape(value);property.
}
alert (args.id);
}
Jul 23 '05 #3
On Sat, 15 May 2004 14:52:58 GMT, dstefani wrote:
I think I need to clarify...
Spot on there. ;-)
I would like to know if this is possible...
Sending a query string from this tag:

<script language="JavaScript" src="script.js?id=test"</script>
Firstly, it is missing a '>' character..
<script language="JavaScript" src="script.js?id=test"></script>
Can the src script recognize the query string?


OK, now...

What is it that you expect the script.js
file to *do* with the id=test?

If it requires the information, it can get
it from the URL (that your normal link
points to) as shown in the example I pointed to.

** But no, I do not believe there is a way
to hand information to a .js file as you
describe. **

Which leads us to an important question.
What are you actually trying to achieve?

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 23 '05 #4
Andrew Thompson wrote:
On Sat, 15 May 2004 14:52:58 GMT, dstefani wrote: Firstly, it is missing a '>' character..
<script language="JavaScript" src="script.js?id=test"></script> Which leads us to an important question.
What are you actually trying to achieve?


Thanks for your reply and time.

I am trying to track visitor movement through a site.

1/ use script.js to set a cookie
2/ grab the querystring in the afore mentioned tag to know which site it
is. I guess I could have a lookup table that checked HTTP headers for
the location and mapped it to an account, but it would be easy if I
could get it from that tag.

-dstefani
Jul 23 '05 #5
Lee
dstefani said:

Hello,

I was wondering if you can get the info from the query string in a
server-side javascript tag?

Here's what I'm trying to do
In the head of page A
...
<script language="JavaScript" src="script.js?id=test</script>
...
And in my script.js file
...
getArgs();

function getArgs() {
var args = new Object();
var query = location.search.substring(1);

You seem to misunderstand how that script block is loaded
and executed. There is nothing "server-side" about it.
The code is loaded into the current HTML page and executes
in that context, which means that location.search will
always refer to the URL of the current HTML page.

Jul 23 '05 #6
Lee wrote:
And in my script.js file
...
getArgs();

function getArgs() {
var args = new Object();
var query = location.search.substring(1);


You seem to misunderstand how that script block is loaded
and executed. There is nothing "server-side" about it.
The code is loaded into the current HTML page and executes
in that context, which means that location.search will
always refer to the URL of the current HTML page.


I knew my stupidity would come into play soon.
Can I change my function to recognize the query string in the scr=""
parameter?

- dstefani
Jul 23 '05 #7
Ivo
"dstefani" wrote
Andrew Thompson wrote:
On Sat, 15 May 2004 14:52:58 GMT, dstefani wrote:

Firstly, it is missing a '>' character..
<script language="JavaScript" src="script.js?id=test"></script>


Secondly, the language attribute should be dropped and a type of
text/javascript be specified, so the resulting tag would be:

<script type="text/javascript" src="script.js?id=test"></script>

The location object is about the location of the page containing the script.
I don't think I 'm saying anything new. The source of the script itself is
document.scripts[n].src in IE4+ and
document.getElementsByTagName('script')[n].src in some other browsers where
n is the index of the script. This is a string which can be parsed for
questions marks and equal signs.

The extension to the source file name may be .php or .asp or anything as
long as the file itself contains javascript and the server sends the
appropiate headers.

Sadly, a running script does not know from which file it came if there more
than one .js file in a page.
HTH
Ivo
Jul 23 '05 #8
Lee
dstefani said:

Lee wrote:
And in my script.js file
...
getArgs();

function getArgs() {
var args = new Object();
var query = location.search.substring(1);


You seem to misunderstand how that script block is loaded
and executed. There is nothing "server-side" about it.
The code is loaded into the current HTML page and executes
in that context, which means that location.search will
always refer to the URL of the current HTML page.


I knew my stupidity would come into play soon.
Can I change my function to recognize the query string in the scr=""
parameter?


That's just ignorance, not stupidity.
The fact that the code is executed in the context of the current
HTML page probably means that there's an easier way to do what
you're trying to accomplish. For example:

<script type="text/javascript">id=test</script>
<script type="text/javascript" src="script.js</script>
The value of id will be available to the code within script.js

Jul 23 '05 #9

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

Similar topics

8
by: Phil Powell | last post by:
if (document.location.href.indexOf('?') >= 0) document.location.href = document.location.href.substring(0, document.location.href.indexOf('?')); if (document.location.href.indexOf('#') >= 0) {...
3
by: Dr. Oz | last post by:
Hi, I am trying to read in a query string from one page and build a link to another page based on the query string. Here's the code I am using to read in the query string: <script...
4
by: Alan Lane | last post by:
Hello world: I'm including both code and examples of query output. I appologize if that makes this message longer than it should be. Anyway, I need to change the query below into a pivot table...
0
by: starace | last post by:
I have designed a form that has 5 different list boxes where the selections within each are used as criteria in building a dynamic query. Some boxes are set for multiple selections but these list...
3
by: MLH | last post by:
Am repeating question with different subject heading, perhaps stating more clearly my problem... I have an A97 query (qryVehiclesNowners2) that has a table field in it named . Depending on the...
4
by: deko | last post by:
When using OutputTo with a query, the 'File name' window in the 'Output To' dialog gets populated with the name of the query by default. This makes the exported file self-describing if the query...
1
by: Oliver Bleckmann | last post by:
Damn, what's wrong here? CGI cgi; map<string,stringcgiParam = cgi.analyseCgiParam(); cout << cgiParam << endl; cout << cgiParam << endl; /////////////////////// #include <iostream>
2
by: =?Utf-8?B?Q2hyaXM=?= | last post by:
How can I run this query against a table in my Access database? I don't know hwo to use it in C#. In VB I would use .Recordset = "some sql statement". How do I do this in C#? //I get a vlaue...
1
by: TF | last post by:
This group came through for me last time so here we go again. My page shows paint colors, brand name, product code, etc in a gridview with the background matching the paint color. Several links on...
3
by: pbd22 | last post by:
Hi. I need some help with structuring my query strings. I have a form with a search bar and some links. Each link is a search type (such as "community"). The HREF for the link's anchor looks...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...

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.