ASP.NET 模式窗口(子父窗口之间的传值)

window.showModalDialog有三个参数,第一:子窗体地址url,第二:传给子窗体的参数,第三:窗体外观参数,(高,宽,居中等参数)

父窗体html:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowModalDialog.aspx.cs" Inherits="MyWebForm.ShowModalDialog" %>






   
   
   
   


   

       

           
                     
       

   


子窗体html:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="XMLWebForm.aspx.cs" Inherits="MyWebForm.XMLWebForm" %>





   
   
   
   


   


       
         
           
           
           
       

   



你可能感兴趣的:(ASP.NET)