What is Fragment Caching in ASP.NET? - ASP.NET

What is Fragment Caching in ASP.NET?

Fragment caching refers to the caching of individual user controls within a Web Form.
Each user control can have independent cache durations and implementations of how the caching behavior is to be applied.
Fragment caching is useful when you need to cache only a subset of a page.
Navigation bars, header, and footers are good candidates for fragment caching.

What is Fragment Caching in ASP.NET?

Fragment caching allows to cache specific portions of the page rather than the whole page. It is done by implementing the page in different parts by creating everything in form of user controls and caching each user control individually.
What is partial classess in .net?
What is partial classess in .net? - When there is a need to keep the business logic separate from the User Interface....
Explain how to pass a querystring from an .asp page to aspx page. - ASP.NET
Explain how to pass a querystring from an .asp page to aspx page. - This html addresses use QueryString property to pass values between pages....
What is a ViewState? - ASP.NET
What is a ViewState? - If a site happens to not maintain a ViewState, then if a user has entered some information in a large form with many input fields and the page is refreshes, then the values filled up in the form are lost...
Post your comment