aspx页面中的OnClientClick,和cs代码中的Response.Write("")
在Button中
然后在页首写<script language="JavaScript">
和在cs文件里写:
是一样的。
只是代码位置不同。
<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>");
}
{
..
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>");
}
是一样的。
只是代码位置不同。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步