D
David Krussow
I have three aspx pages that are displayed to the user in a frameset. One
aspx page holds title information and displays in the top frame, the aspx
page in the left frame lists products, and the aspx page in the right frame
shows product details.
When the user first opens the ASP.NET Web application, the default page is
displayed (which is not the product catalog described above). The main
application menu contains links for various catalogs ("Widgets",
"Thingies"... and other catalogs). When the user selects one of the catalogs
from the menu, the frameset page is opened, and a QueryString value (e.g.,
?CatalogID=43) is passed in to control which catalog is displayed .
My question: Being that the QueryString variable (?CatalogID) is getting
passed to the frameset page, how do I make the value of CatalogID available
to the code-behind module of the aspx page in the left frame that lists the
products. This is the page that really needs the CatalogID value.
Thanks!
aspx page holds title information and displays in the top frame, the aspx
page in the left frame lists products, and the aspx page in the right frame
shows product details.
When the user first opens the ASP.NET Web application, the default page is
displayed (which is not the product catalog described above). The main
application menu contains links for various catalogs ("Widgets",
"Thingies"... and other catalogs). When the user selects one of the catalogs
from the menu, the frameset page is opened, and a QueryString value (e.g.,
?CatalogID=43) is passed in to control which catalog is displayed .
My question: Being that the QueryString variable (?CatalogID) is getting
passed to the frameset page, how do I make the value of CatalogID available
to the code-behind module of the aspx page in the left frame that lists the
products. This is the page that really needs the CatalogID value.
Thanks!