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

asp.net页面更新问题
我有一个aspx的页面。里面上半部分是个div但是下面的div里我放了个ifram,然后ifram那页里我放了个datelist。我想在主页上半部分放个按钮。。一点就能传值到下面ifram里让ifram里的datelist的数据源发生变化然后更新显示数据。求助。急。在线等。

------解决方案--------------------
session是要占资源的啊

  protected void Button1_Click(object sender, EventArgs e)
  {
 string curUrl = "http://www.baidu.com?param=1";//链接地址和参数
        ClientScript.RegisterStartupScript(Page.GetType(), "scriptinfo", "<script>document.getElementById('curIframe').src='" + curUrl + "';</script>");
//curIframe  页面iframe 的 ID
}