今天在項(xiàng)目上遇到了這個(gè)問(wèn)題,其實(shí)只是window.returnValue的簡(jiǎn)單應(yīng)用,不是asp.net的專屬內(nèi)容。作為積累,記錄一個(gè)簡(jiǎn)單的實(shí)現(xiàn)模型。
圖1 用到的文件
從圖1中我們可以看到,只用到了兩個(gè)頁(yè)面,其中Default.aspx作為父頁(yè)面,Default2.aspx作為子頁(yè)面被彈出。Default.aspx頁(yè)面上有兩個(gè)TextBox一個(gè)Button,代碼如下:
復(fù)制代碼 代碼如下:
%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default"%>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head runat="server">
title>/title>
/head>
body>
form id="form1" runat="server">
div>
asp:TextBox runat="server" ID="a1">
/asp:TextBox>
asp:TextBox ID="TextBox1" runat="server" ontextchanged="TextBox1_TextChanged">/asp:TextBox>
asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click"/>
/div>
/form>
/body>
/html>
在Button1的Click事件中,我們注冊(cè)彈窗腳本,代碼如下:
復(fù)制代碼 代碼如下:
protectedvoid Button1_Click(object sender, EventArgs e)
{
StringBuilder s =new StringBuilder();
s.Append("script language=javascript>");
s.Append("var a=window.showModalDialog('Default2.aspx');");
s.Append("if(a!=null)");
s.Append("document.all('TextBox1').value=a;");
s.Append("/script>");
Type cstype =this.GetType();
ClientScriptManager cs = Page.ClientScript;
string sname ="lt";
if (!cs.IsStartupScriptRegistered(cstype, sname))
cs.RegisterStartupScript(cstype, sname, s.ToString());
}
其中 s.Append("var a=window.showModalDialog('Default2.aspx');");一句用來(lái)彈窗Default2.aspx頁(yè)面并接收它的返回值。
接收了返回值之后我們把它賦值給TextBox1.
Default2.aspx頁(yè)面有一個(gè)TextBox和一個(gè)Button,代碼如下:
(這里需要注意的是在head里的base target="_self"/>標(biāo)記十分重要。
復(fù)制代碼 代碼如下:
%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2"%> !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head >
title>/title>
base target="_self"/>
/head>
body>
form id="form1" runat="server">
div>
asp:textbox runat="server" ID="t1">/asp:textbox>
asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click"/>
/div>
/form>
/body>
/html>
我們?cè)贒efault2.aspx頁(yè)面的Button_Click事件中使用腳本返回一個(gè)值給父頁(yè)面。代碼如下:
復(fù)制代碼 代碼如下:
protectedvoid Button1_Click(object sender, EventArgs e)
{
StringBuilder s =new StringBuilder();
s.Append("script language=javascript>"+"\n");
s.Append("window.returnValue='"+this.GetSelectValue() +"';"+"\n");
s.Append("window.close();"+"\n");
s.Append("/script>");
Type cstype =this.GetType();
ClientScriptManager cs = Page.ClientScript;
string csname ="ltype";
if (!cs.IsStartupScriptRegistered(cstype, csname))
cs.RegisterStartupScript(cstype, csname, s.ToString());
}
腳本注冊(cè)成功之后,我們可以做如下的實(shí)驗(yàn):
1)打開(kāi)Default1.aspx頁(yè)面在id為a1的TextBox中輸入數(shù)字55,然后點(diǎn)擊Button
2)在彈窗中輸入數(shù)字66再點(diǎn)子窗體的按鈕關(guān)閉子窗體。
3)查看結(jié)果
從結(jié)果中,我們可以看出我們保留了先輸入到父窗體中的值,又接收了從子窗體傳遞過(guò)來(lái)的值。
您可能感興趣的文章:- asp.net使用母版頁(yè)中使用ajax腳本取數(shù)據(jù)
- ASP.NET下母版頁(yè)和內(nèi)容頁(yè)中的事件發(fā)生順序整理
- ASP.NET 2.0 中的創(chuàng)建母版頁(yè)
- ASP.NET 窗體間傳值的方法
- asp.net窗體的打開(kāi)和關(guān)閉(輸出js)
- asp.net Silverlight中的模式窗體
- asp.net窗體操作總結(jié)
- ASP.Net巧用窗體母版頁(yè)實(shí)例