The following link shows examples of Bootstrap Modal dialogs. Some examples have button (e.g. Send Email). http://getbootstrap.com/javascript/#modals
If the Modal dialog is on an .aspx form, is it possible to call a method (code behind in .aspx.cs) when user clicks on a button of the modal?
I tried changing the button as follows but it didn't produce any result
<button type="button" runat="server" class="btn btn-primary" onclick="Submit_click">Email</button>
That is the code in method Submit_click never fires.