我正在使用anchor标签从demo1.aspx重定向下一页(demo2.aspx)。我想当我点击一个标签然后它将重定向到下一页的值并将其设置为iframe.i不要在iframe.pls中的硬编码值让我解决
demo1.aspx
//here how to pass value"add.swf.html" with demo2.aspx
<a href="demo2.aspx" >Add</a>
Demo2.aspx
<iframe src="add.swf.html" style="width: 1346px;height: 693px;">
</iframe>
答案 0 :(得分:0)
尝试以下
<a href="demo2.aspx?value=add.swf.html" >Add</a> " >Add</a>
在demo2.aspx
中<%
string value= Request.QueryString["value"];
%>
<iframe src="<%=value%>" style="width: 1346px;height: 693px;">
</iframe>