这是Firefox的代码。
Default.aspx的:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<script type="text/javascript" src="pop.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="Hidden1" type="hidden" runat="server" />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Popup" />
</div>
</form>
</body>
</html>
Default.aspx.cs:
protected void Page_Load(object sender, EventArgs e)
{
TextBox1.Text = "Hello";
Button1.Attributes.Add("onClick", "javascript:InvokePop('" + TextBox1.ClientID + "');");
}
PopupWin.aspx:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<script type="text/javascript" src="pop.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtValue" runat="server"></asp:TextBox><br />
<br />
<input type="button" id="btnReturnValue" value="Return value back" onclick="ReturnValue();" />
</div>
</form>
</body>
</html>
pop.js:
function InvokePop(fname)
{
val = document.getElementById(fname).value;
retVal = window.open("PopupWin.aspx?Control1=" + fname, 'Show Popup Window', 'height=90,width=250,resizable=yes,modal=yes');
retVal.focus();
}
function ReturnValue()
{
var newValue = document.getElementById("txtValue").value;
if ((window.opener != null) && (!window.opener.closed))
{
window.opener.document.getElementById("TextBox2").value = newValue;
}
window.close();
}
在这种情况下,我单击Default.aspx页面上的按钮并打开Popup.aspx作为弹出窗口。我在Popup.aspx的文本框中输入一些值,然后按下按钮。新值显示在Default.aspx页面的第二个文本框中。
这样可行,但是如何将Popup.aspx页面中输入的新值传递给Default.aspx页面中的某个处理程序并进一步使用?例如,我可以在Default.aspx页面上有另一个ASPX按钮,当我点击它时,我可以使用在Popup.aspx页面中输入的值。
答案 0 :(得分:1)
您可以做的是以下内容:
在第一页上添加hiddenField。我称之为“hfPopupValue”。
在pop.js中你正在这样做:
window.opener.document.getElementById("TextBox2").value = newValue;
您可以将其更改为:
window.opener.document.getElementById("hfPopupValue").value = newValue;
之后,您只需从hiddenField中读取值即可。 这应该可以解决你的问题。
答案 1 :(得分:0)
您是否考虑使用jQueryUI's Dialog,它可以让您将所有控件保留在同一页面上,这意味着更清晰的代码。
它看起来也不像JavaScript弹出窗口那么讨厌。