跟小D每日学口语

asp.net OnClientClick not rendered for initially disabled Button

Question:

I have a disabled asp.Button, which I enable later with JavaScript. Like this

<asp:Button ID="btnSave" runat="server" Text="Save" Enabled="false" OnClientClick="; return ValidateFields();" OnClick="btnSave_Clicked" />

Answer:

However, the "onclick" method is not rendered as html when the control is disabled. My work around is to add the following code in PageLoad.

btnSave.Attributes["onclick"] = "return ValidateFields();";
posted @ 2011-07-12 16:57  Danny Chen  阅读(205)  评论(0编辑  收藏  举报