I am working on a web application project in ASP.Net
and I have two separate pages:
In the first page Default.aspx
, I am using the iframe
to call the second page Test.aspx
.
I passed two parameters in the src
attribute of iframe
.
<iframe src="Test.aspx?Param1=<%=var1%>&Param2=<%=var2%>"
scrolling="no" width="100" height="275px" frameborder="0"></iframe>
The question is how to access Param
1 or Param2
in the Test.aspx
page.
Thanks in advance
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…