add a hidden control inside this IFRAME page, when you are ready, inside your 父框架的客户端 code, change the value of this hidden control with your 参数 using Javascript , then either trigger a submit button inside this IFRAME page or force a postback for this IFRAME page

解决方案 »

  1.   

    但是我在 iframe 的 codebehind 的Page_Load 里用到这个参数 ……
      

  2.   

    没人回,自己 up  一 up !
      

  3.   

    执行顺序:父框架的codehind,Iframe 的codehind ,Iframe的客户端页,
    父框架的客户端页。
    方法:1:
     Show.InnerHtml="<iframe src=AddUserShow.aspx?beginday="+beginday+"&endday="+endday+"&UsersType="+UsersType+"&"+"frameborder=0  frameSpacing=0 vspace=0 hspaces=0 width=100% height=100% scrolling=yes  marginHeight=0  marginWidth=0 ></iframe>";    
      在 AddUserShow.aspx中用Request就可以。
    2: 在父框架的codehind和Iframe 的codehind同时继承一个类,在类中加上静态的属性,父框架的codehind中为属性赋值,Iframe 的codehind取出,可以了。见。
    3,实际上,相当于页面间参数传递。
      

  4.   

    哈哈: 非得用 URL 传过去吗?我要的是 父框架的 html --- Iframe 的 cs ……