Hi,
I am a newbie to asp.net web applications.
My web application consists of Default.aspx page which is made up of
frames, where each of the frames's source is an aspx page. Is it
correct to have like this. I have made the source of each frame as an
aspx page because I want to display the items in each frame using
Repeater control.
The application's start page takes the query string, calculates the
result and sets the value to a variable named Result. The start page is
not Default.aspx page.
Now I want to use this Result object in the source aspx pages of each
frame. I want to load each of the frames with some values, depending on
the Result value. So, how do I share this variable Result
Any help will be appreciated

Help required for passing data between various aspx pages
J A Y
cdemez
Hi, sairaj sunil
For your need, it is better to use master page which is a new feature in asp.net2.0 or use usercontrol as implementation.
And for data sharing, for single page to use viewstate, single user to use session object, and for whole app to use application object. Otherwise, to use transfer to submit data.
Thanks