Multiple choice technology web technology

Which feature of ASP.NET 2.0 enables you to submit a form and have all the control values of the form post to another page?

  1. ViewState

  2. Pre-Render

  3. PostBack

  4. Cross-Page Posting

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Cross-Page Posting is an ASP.NET 2.0 feature that allows a form to post to a different page than the one that rendered it, controlled by the PostBackUrl property. Unlike PostBack (posts to same page), ViewState (maintains state), and PreRender (a lifecycle event), Cross-Page Posting specifically enables multi-page form submissions for scenarios like data collection across multiple pages.