Jquery Asp.net button disable

前端 未结 6 690
时光说笑
时光说笑 2021-02-09 14:42

html code:


Jquery Code:

$(\'[id$=b         


        
6条回答
  •  情歌与酒
    2021-02-09 15:40

    Wouldn't you just need to do the following:

    btnTest.Enabled = False;
    

    in the code-behind file? This will cause a postback but it should work.

提交回复
热议问题