Post data via the Post method in asp.net? (URGENT)

  • Thread starter Thread starter Vishal
  • Start date Start date
V

Vishal

Hello,

I need to send some data via the post method from my
web aspx page to an asp page. Does anybody know how I can
do that?

Please advise me.
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/
 
Back
Top