dopostback禁用控件

dopostback禁用控件

本文介绍了用_dopostback禁用控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用javascript使用_dopostback禁用控件,
任何人都可以告诉我如何在单击页面

how to disable the control with _dopostback using javascript,
Can any one tell me how to disable the button while i click the button in page

推荐答案

<script language="Javascript">
function disabledME()
{
   document.getElementById("btnID").disabled = true;
   return false;
}
</script>

<asp:button id="btnID" text="ClickMe" runat="server" onclientclick="return disabledME();" xmlns:asp="#unknown" />




这篇关于用_dopostback禁用控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 11:37