.net模式子窗口传值给父窗口

父窗口代码:

 

  function showChil() {

   window.showModelDialog("childre.aspx?pare=nn",window,"help:no;");

   window.location.href.reload();

 }

 

  //接受子窗口传来的值

 

 

chldre.aspx子窗口代码:

在.cs代码中

click代码事件中

 string names= this.txtName.Text;
        Response.Write("");   //form1是父窗口中的form表单,AllName是父窗口中的接收文本框
        Response.Write("") ;

你可能感兴趣的:(.net模式子窗口传值给父窗口)