how to trap an event on a html button created with <input....>

  • Thread starter Thread starter Rocio
  • Start date Start date
R

Rocio

I have a html button created with
<input type="submit" id="btnPayNotices" value="Pay Notices" />

now I need to trap the click event at the server side.

Yes, this button had to be created with plain html, not with asp.net

how can i do this ?
 
And create the button in your code.

Protected WithEvents btnPayNotices As System.Web.UI.HtmlControls

'---Note: Create the button exactly the same as it's id.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
Back
Top