I have the following frameset called index.asp:
In content.asp I have the following:
The Source ZZZ needs to be dynamic so I want to be able to pass any code for the source.
I thought I'd be able to do this in the iframe link:
And I would pass this value on the index.asp page like so:
index.asp?Source=YYY
Calling the "Source" only appears to work upto the index.asp but doesn’t pass to the content.asp page where the link is.
Can anyone help me sort this so the link carries the querystring too?
Thanks.
Ah dinnae ken...
Code:
<frameset rows="55,*,55">
<frame name="top" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" noresize src="header.asp">
<frameset cols="130,*">
<frame name="left" marginheight=0 marginwidth=0 scrolling="no" noresize src=" left.asp?" frameborder="0">
<frame name="Page" marginheight=0 marginwidth=0 scrolling="auto" noresize src="content.asp" frameborder="0">
</frameset>
<frame name="bottom" marginheight=0 marginwidth=0 scrolling="no" noresize src="bottom.asp" frameborder="0">
</frameset>
In content.asp I have the following:
Code:
<iframe src="[URL unfurl="true"]https://test.com/wrapper.asp?Step=Details&Product=New&Source=[/URL][b]ZZZ[/b]" scrolling="no" height="2500px" width="100%" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
The Source ZZZ needs to be dynamic so I want to be able to pass any code for the source.
I thought I'd be able to do this in the iframe link:
Code:
Source=<%= Request.QueryString("Source") %>
And I would pass this value on the index.asp page like so:
index.asp?Source=YYY
Calling the "Source" only appears to work upto the index.asp but doesn’t pass to the content.asp page where the link is.
Can anyone help me sort this so the link carries the querystring too?
Thanks.
Ah dinnae ken...