I have a simple htmlinputbutton of type "submit" in my aspx page.
<input id="Submit1" runat="server" type="submit" value="submit"/>
If I click it I want to handle this as an event on the server. Much like how a normal asp:Button would do.
EDIT: I've tried the onserverclick thingy...it didn't work. Used onserverclick="foo"
In my code behind did something like:
void foo(object s, EventArgs e)
{
}