页面传值

小窗口的Page_Load:
if (!IsPostBack)
{
    ButtonOK.Attributes.Add("onclick","return setValue();");
}

小窗口的客户端:
<script language="javascript">
function setValue()
{
window.opener.document.getElementById("主窗口TextBox1的id").value = "子窗口选中的id";
window.close();
return false;
}
</script>

posted @ 2005-11-24 17:04  meteorcui  阅读(123)  评论(0编辑  收藏  举报