Topic: Sending QueryString to Frame-IFrame
Share/Save/Bookmark
ASP.Net - Sending QueryString to Frame/IFrame
 
1. Go to the markup of the page
 
2. Locate the frame elements
 
3. Change the source attribute to the following:
 
      <frame name="right" src="right.asp?Test1=<%=Request.QueryString("Test1")%>" scrolling="auto">
 
      OR
 
      <IFRAME style="visibility: visible" id="FrameToPrint" src="PrintDoc.aspx?<%Response.Write(Request.QueryString)%>"></IFRAME>