快速业务通道

ASP.NET弹出对话框和页面之间传递值的方法总结

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-04-11

当然也可以写在code,写法如下

Dim PopUpDialog As String

        PopUpDialog = "<script type=''text/javascript''>window.open(''Popup.aspx'',''_blank'',''height=450,width=470,status=no,toolbar=no,menubar=no,scrollbars=no,location=no'');</script>"

        ScriptManager.RegisterStartupScript(Me, Me.GetType, "key", PopUpDialog, False)

PopUp页面当中

<head runat="server">中添加

<script type="text/javascript">

function popup()  

{  

      window.opener.document.getElementById("TB_subject").value=document.getElementById("TB_Name").value;

      window.opener.document.getElementById("TB_Info").value=document.getElementById("TB_Summary").value;

      window.close()    

     }

</script>

<form id="form1" runat="server">中添加

<div>

   <asp:TextBox ID="TB_Name" runat="server"></asp:TextBox>

   <asp:TextBox ID="TB_Summary" runat="server"></asp:TextBox>

   <p>

   <input type="button" value="传值并返回父窗口" name="button1" onclick="popup()" /></p>

</div>

之后在触发对象(input,button etc…)上添加onclick="popup()" 事件即可, 当然在ASP.NET中如果应用了VBC#Code这句话应当改为OnClientClick="popup()".

好了解释一下前面卖的关子,这里需要注意几个问题,

1.        window.opener.document.getElementById("TB_Name").value这句话虽然可以用window.opener.document.all["TB_Name"].value代替,但是它只对IE有效,firefox中或其他浏览器是没有结果的,因为事实上document没有all这个方法getElementByIdgetElementByName才是正解.

2.        如果使用了ASP.NET 2.0 AJAX, 并且把xhtml tag对象写入Code的时候,记得用ScriptManager.RegisterStartupScript(Me, Me.GetType, "key", PopUpDialog, False) 替代Response.Write(script); 因为在ScriptManager控件里不支持Response.Write()

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号