Hi,
Can anyone help me? I am using query string to pass parameters, from a page called getlist.asp, to an .asp page, something like this;
I get a page of html returned something like this;
<HTML>
<HEAD>
<TITLE>Page for electronic post-processing</TITLE>
<META NAME="Total" Content="2">
<META NAME="WO" Content="WO123">
<META NAME="Status" Content="Opened">
<META NAME="WO" Content="WOB456">
<META NAME="Status" Content="Accepted">
</HEAD>
</HTML>
It is worth pointing out that I don't have direct access to the query.asp, it's a 3rd party site that I just make reference to it as shown above.
Can someone tell me how I can read these values back out of the page, i.e. the meta tag names and content?
I know I could do something like this;
total=document.all("total"
.content
but I can't do that if I don't have direct access to the code in query.asp? Can I get these values from my getlist.asp?
Confused...any help would be great.
Can anyone help me? I am using query string to pass parameters, from a page called getlist.asp, to an .asp page, something like this;
I get a page of html returned something like this;
<HTML>
<HEAD>
<TITLE>Page for electronic post-processing</TITLE>
<META NAME="Total" Content="2">
<META NAME="WO" Content="WO123">
<META NAME="Status" Content="Opened">
<META NAME="WO" Content="WOB456">
<META NAME="Status" Content="Accepted">
</HEAD>
</HTML>
It is worth pointing out that I don't have direct access to the query.asp, it's a 3rd party site that I just make reference to it as shown above.
Can someone tell me how I can read these values back out of the page, i.e. the meta tag names and content?
I know I could do something like this;
total=document.all("total"
but I can't do that if I don't have direct access to the code in query.asp? Can I get these values from my getlist.asp?
Confused...any help would be great.