How to post a form from an asp.net page to an asp page

vitamingoo

Newcomer
Joined
Feb 18, 2004
Messages
5
I download a web mail server , and its web interface made by asp.

I want to post the asp.net form(default.aspx) from my site to the mail server's web interface(mail/default.asp).

I try to use
Server.Transfer("mail/default.asp") to post , but failed.

How to do ?
 
You mean Post to ASP page, not redirect right?

ASP.NET also can work as normal ASP page, I mean do not use "code-behind", then you should able post to ASP page like a normal ASP.
 
Thank bungpeng.
I have already knew how to do . I add Attribute on the SubmitButton and use java disable the page's viewstate then post the form.

Thank Robby too.
I know how to use Server.Transfer now
 
Back
Top