Form action in HTML

  • Thread starter Thread starter rickr
  • Start date Start date
All .aspx page forms have an implied action that points to itself - - this
is the fundamental architectural design of asp.net pages.

You can still make a client-side form (form that does not specify
"runat=server" and doesn't contain any .net web form controls) and code the
action any way you want as you always have.
 
Back
Top