我有一个 aspx 页面(主页),我使用 window.loaded 事件在按钮单击时填充另一个 aspx 页面(弹出)上的一些 div。代码如下:
mainpage.aspx 上的脚本
<script type="text/javascript">
window.callback = function (doc) {
if (document.getElementById('GridView2') != null)
{
// Get Gridview HTML and wrap it with <table> tag
var temp = document.getElementById('GridView2').innerHTML;
var temp2 = "<table>" + temp + "</table>";
doc.getElementById('foo').innerHTML = temp2; // this works fine
}
else
{
// GridView is missing, do nothing!
}
}
function openWindow() {
// Only open a new Compose Email window if there is a Gridview present
if ((document.getElementById('GridView2') != null)) {
var mywindow = window.open("Popup.aspx");
}
else {
alert("Please create GridView first");
}
}
Popup.aspx 上的代码
<script type="text/javascript">
function loaded() {
window.opener.callback(document);
alert(document.getElementById('foo').innerHTML); //This alerts the code I need
//var input = document.createElement("input");
//input.setAttribute("type", "hidden");
//input.setAttribute("name", "testinput");
//input.setAttribute("runat", "server");
//input.setAttribute("value", document.getElementById('foo').innerHTML);
////append to form element that you want .
//document.getElementById("foo2").appendChild(input);
}
</script>
<asp:Button OnClick="Send_Email_Button_Click" ID="SendEmail" Text="Send Email" CssClass="Button1" runat="server" />
<div id="foo" runat="server">
</div>
弹出窗口.aspx.cs
protected void Send_Email_Button_Click(object sender, EventArgs e)
{
string subject = String.Format("TEST EMAIL");
string mailto = "me@mysite.com";
string mailfrom = Environment.UserName + "@mysite.com";
string mailBody = "<h1>Testing</h1>";
MailMessage mail = new MailMessage(mailfrom, mailto, subject, null);
mail.IsBodyHtml = true;
mail.Body = mailBody;
SmtpClient smtpClient = new SmtpClient("smtphost");
smtpClient.Credentials = CredentialCache.DefaultNetworkCredentials;
try
{
smtpClient.Send(mail);
}
catch (Exception ex)
{
}
}
现在,我一直在尝试将 div.innerhtml 的值传递给代码隐藏,因此我可以使用此 HTML 标记创建电子邮件。我尝试使用隐藏的 div,但我得到了一个关于请求验证的 asp.net 错误:输入字段中的 html 代码,这是一个公平的观点。我似乎无法访问 div.InnerHtml。我得到值“\r\n\r\n”。我有我需要的值,但它是在 Javascript 中的,我只需要一种将这个值传递给 C# 的方法,这样我就可以发送电子邮件了。
当我单击 SendEmail 按钮时,我再次收到警报(因为正在调用 window.loaded)。如何使 Popup.aspx 仅填充一次,而不是在每次单击按钮时填充?以及如何传递 innerhtml 值以使 SendEmail 工作?非常感谢您的关注。