how could load master page once during my application execution?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
when i click on some link to open a aspx page ,it load master page .as there is same master page in all of my aspx pages ,how could it possible to load master page onece and view on all the aspx pages
One of the things you can do, is to cache the controls you have in the master page using OutputCache directive on top of the master page. That way all the controls in the master page are cached for whatever the time you want them to be.
Bhaskara