change form action

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

in a custom control which renders a form, is there a way to define the form
action other than the preset postback.
I've seen several but they are all an httpModule of sorts.

I would like to do it at the page or control level if possible.

thanks
 
Here's 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/
 
good ideas

thanks

Steve C. Orr said:
Here's 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