Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
204 views
in Technique[技术] by (71.8m points)

c# - How to access parameters sent from iframe in ASP.Net?

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 Param1 or Param2 in the Test.aspx page.
Thanks in advance

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

They should be available as Param1 and Param2 in the QueryString property of the request in Test.aspx, in the form Request.QueryString["Param1"] and must already be present as var1 and var2 in the parent Default.aspx


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...