How to use bootstrap button in aspx and click event in server side. i have button like :
example.aspx:
<button class="btn btn-orange btn-lg" runat="server" onclick="btnclick_click"><b><i class="fa fa-sign-out"></i> LOGOUT</b></button>
this is the button that i taken aspx file with bootstrap button with onclick event :
example.aspx.cs :
here i am accessing button onclick event but its not triggering
protected void btnclick_click(object sender, EventArgs e)
{
Response.Redirect("page2.aspx");
}