aspx页面中的OnClientClick,和cs代码中的Response.Write("")

在Button中 
<asp:Button ID="lblToInvoic" runat="server"  OnClientClick="fff()" CssClass="btn2" Text="开发票" OnClick="lblToInvoic_Click" />

然后在页首写<script language="JavaScript">
function    fff()
{
   
}

和在cs文件里写:
 protected void lblToInvoic_Click(object sender, EventArgs e)
 
{
..
Response.Write(
"<script>window.dialogArguments[0].document.getElementById(window.dialogArguments[1]).value =\"" + strValue1 + "\";window.dialogArguments[0].document.getElementById(window.dialogArguments[2]).value =\"" + strValue2 + "\";window.dialogArguments[0].document.getElementById(window.dialogArguments[3]).value =\"" + strValue3 + "\";window.dialogArguments[0].document.getElementById(window.dialogArguments[4]).value =\"" + strValue4 + "\";window.close();</script>");

}

是一样的。
只是代码位置不同。

posted on   simhare  阅读(409)  评论(0编辑  收藏  举报

导航

< 2007年7月 >
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 1 2 3 4
5 6 7 8 9 10 11
点击右上角即可分享
微信分享提示