How to call Jquery function from C#

后端 未结 3 544
萌比男神i
萌比男神i 2020-12-19 13:23

I would like to fadein and out a div after performing some code. This JQuery function is working fine when using the button\'s onclientclick property. But, Unable to call it

3条回答
  •  星月不相逢
    2020-12-19 13:33

    Try this...

    ClientScript.RegisterClientScriptBlock(this.GetType(), "script", "Confirm();", true);
    

提交回复
热议问题