gpt4 book ai didi

asp.net - 在回发之前禁用 ascx 页面中的按钮

转载 作者:行者123 更新时间:2023-12-01 04:53:47 24 4
gpt4 key购买 nike

如何禁用 ascx 页面中的按钮?我知道如何在 aspx 页面上执行此操作:

btnSave.Attributes.Add("onclick", 
"this.disabled=true;this.value='Please Wait...';needToConfirm=false;" +
ClientScript.GetPostBackEventReference(btnSave, "").ToString());

但是 ascx 页面中不存在 ClientScript 函数。

最佳答案

您不需要在代码后面使用 ClientScript,您也可以将其直接作为 OnClientClick 属性放在按钮标签中:

<asp:Button id="btnSave" runat="server" OnClientClick="this.disabled=true; this.value='Please Wait...'; needToConfirm=false;" Text="Save" />

关于asp.net - 在回发之前禁用 ascx 页面中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5168509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com