日期:2014-05-17 浏览次数:20449 次
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
}