ASP.NET does not support this because you can't post to different pages. ASP.NET always posts to the same page the form is on. This is the basis of the "postback" paradigm. You can however, do whatever processing you would need for what might appear visually to be a different form, then redirect to another page.
|