Is it possible to call a server side buttons click event using javascript or jquery If yes then how to do it
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- How to fix IE ClearType + jQuery opacity problem i
- void before promise syntax
- jQuery add and remove delay
Whether it is a server side control or client side control when the click is triggered in client, based on the attributes it will formulate the server events. Consider an Serverside button from asp.net page, when you trigger click event from javascript/jquery, normally it will make a postback event to the server because of the attribute runat=server. Below is the syntax for triggering the click event in jQuery.