Submitting ASP.NET Forms

  • Thread starter Thread starter Mark Fisher
  • Start date Start date
M

Mark Fisher

Is there a way to submit an ASP.NET form to a different page, and not back
to itself?

Thanks
 
The current version of ASP.NET doesn't really provide any great way to do
this, but here are some ideas for you:

1) Output an old fashioned non-server form to the client (without the runat=
'server' attribute) Set the action attribute like you would have in
ASP.OLD, and use javascript to submit the form.
2) use client side script to change your ASP.NET form action attribute
3) use this webform control: http://www.wilsondotnet.com/Controls/
 
Back
Top