wsyeager Posted September 2, 2003 Posted September 2, 2003 Is there a way to access the forms collection from webpage1 when inside webpage2 from the code-behind page? Quote Thanks, Bill Yeager (MCP, BCIP) Microsoft Certified Professional Brainbench Certified Internet Professional, .Net Programmer, Computer Programmer YeagerTech Consulting, Inc.
*Gurus* Derek Stone Posted September 3, 2003 *Gurus* Posted September 3, 2003 No, since the page doesn't exist anymore (for all intents and purposes) in an object format. You'll need to pass the form collection data manually or use the Server.Transfer method to redirect the ASP.NET worker process to render "webpage2" with the query string and form collection of "webpage1". This means that "webpage1" will never be rendered, although the client will assume it was since the worker process essentially replaced the compilation of the requested page with the compilation of a page designated by the developer. Quote Posting Guidelines
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.