正常代码控制无法满足需求,所以记录一下方法:

<input id="Button5" onclick=" CX()" type="button"  Height="25px" Width="72px" runat="server" value="查  询" />
<asp:Button ID="Button6" runat="server" style="display:none;" Text="Button" onclick="Button6_Click" />

调用Javascript代码:

<script type="text/javascript">
function CX() {
document.getElementById("Button5").disabled = true;
document.getElementById("Button6").click();
}
</script>

这样就实现点击Button5 然后Button5的Enabled=false

原理:首先Button6是不显示的(style="display:none;"),通过点击Button5,进入CX()方法,然后在CX()内部,触发Button6的事件。

   实际按钮事件是写在Button6的Click里的。

05-14 03:41