I am creating an application using ASP.Net, in which I have a HTML button on an aspx page.
<input type="submit" id="btnSubmit" runat="server"
style="background-image:url(App_Themes/default/Images/quiz_class/btn_submit.jpg);
width:80px; height:29px;" onserverclick="btnSubmit_ServerClick" />
But when I click on the button then it not calling the btnSubmit_ServerClick event on the aspx.cs page.
I don't want to use asp control button.
Please help..
See Question&Answers more detail:os