frameset/request.querystring question
*i wanted to make a frameset with the frames set up like this:
Code:
<frame name="main" src="Webform1.aspx?var=" & <%request.querystring("var")%>
it doesn't pass the querystringvalue to the querystring of the new page as i had hoped...can i use request.querystring there?
is there any way i can read the parameters from the framesets querystring and directly use it in the querystring for one of the frames?
i really hope so.....
Re: frameset/request.querystring question
Try:
Code:
<frame name="main" src="Webform1.aspx?var=<%= request.querystring("var") %>">
DJ
Re: frameset/request.querystring question
thanx! syntax was wrong...