Working on an aspx page using VS 2013 with a C# CodeFile. If Bootstrap is applied to the page, how can I reference the CodeFile to call a function? For example, when a button is clicked to handle it through a Button1_Click function in the CodeFile:
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
Is it possible to achieve the same functionality using a Bootstrap button?
<button type="button" class="btn btn-default" id="Button1">Button1</button>