vitamingoo Posted February 18, 2004 Posted February 18, 2004 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 ? Quote
bungpeng Posted February 19, 2004 Posted February 19, 2004 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. Quote
Moderators Robby Posted February 19, 2004 Moderators Posted February 19, 2004 Server.Transfer only works if they're in the same application/server. Quote Visit...Bassic Software
vitamingoo Posted February 19, 2004 Author Posted February 19, 2004 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 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.