Re: iFrame parent querystring
Your iframe can look something like this:
<iframe src="/mylink.asp?<%=request.ServerVariables("QUERY_STRIN G")%>" scrolling="Default" ></iframe>
This will give your iframe the same querystring as your parent page.
In asp, on your iframe page then just grab the variables you need from the querystring.
|