日期:2014-05-17  浏览次数:21098 次

iframe接值问题
index.asp中
<form   name= 'frm1 '>
      <iframe   src= '1.asp '   id= "ifr1 "   name= "ifr_name ">
      </iframe>
</form>

1.asp中
<%
Response.write   " <a   href   =   '1.asp?   flg= "&   strflg   & " '> 连接 </a> "
%>
点“连接”的时候在iframe中刷新1.asp页面,   如何能在1.asp中接到flg的值呢?
直接用Request.QueryString( "flg ")怎么不行呢
请各位高手指点

------解决方案--------------------
改成这个试下:
Response.write " <a href = '1.asp '? flg= ' "& strflg & " '> 连接 </a> "