cross page postback

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • furqi
    New Member
    • Dec 2009
    • 21

    cross page postback

    hello every body

    i am currently a beginner in asp.net i am currently watching msdn videos of "beginners developers learning" i am on the topic of application state so i got confused on a topic of "cross page postback" can anybody explain what that is
    and another thing is "profile" object we use it in web.config file

    1. what is cross page post back?
    2. what is web.config file?
    3. what is cross page postback?

    please help me out on this topics i shall be very thankful to ya ??
    Last edited by Curtis Rutland; Jan 22 '10, 03:18 PM. Reason: don't make your entire post in bold
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    Sorry Furgi, you posted in the classic ASP forum, instead of the ASP.NET forum. Even though a lot of people refer to ASP.NET as ASP, they are different beasts. I'll move your post over to the right forum.

    Jared

    Comment

    • sanjib65
      New Member
      • Nov 2009
      • 102

      #3
      Actually it's been postd before.
      Just remember: Crooss Page is nothing but sending data from one page to another page. One is SourcePage other is TergetPage.
      In TargetPage you retain the data as PreviousPage.Fi ndControl("Text Box1") if there were any data in the SourcePage TextBox Control.


      I'd also like like to qoute from MSDN :

      "By default, buttons and other controls that cause a postback on an ASP.NET Web page submit the page back to itself. This is part of the round-trip cycle that ASP.NET Web pages go through as part of their normal processing. For details, see Introduction to ASP.NET Web Pages.

      Under some circumstances, you might want to post one page to another page. For example, you might be creating a multi-page form that collects different information on each page. In that case, you can configure certain controls (those that implement the IButtonControl interface, such as the Button control) on the page to post to a different target page. This is referred to as cross-page posting. Cross-page posting provides some advantages over using the Transfer method to redirect to another page. For details, see Redirecting Users to Another Page."

      To read you'd love this introduction:

      Comment

      Working...