There are four kinds of objects transferring between asp.net pages.
1. Front end to front end
This is the most common one, you use javascript to manipulate another page, or append certain string to call another page.
2. Front end to back end
In other words, a form submission,
3. Back end to front end
Everything thing you tell the Response object to do falls into this category.
You can also use the ViewState object to store variable values.
3. Back end to back end
Using Server.Transfer and Context.Handler you can query everything in the previous page object.
No comments:
Post a Comment