تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح Caching multiple versions of user control using VaryByControl Part 124 ضمن كورس ASP.net شرح قناة kudvenkat، الفديو رقم 124 مجانى معتمد اونلاين
Text version of the video
http://csharp-video-tutorials.blogspot.com/2013/02/caching-multiple-versions-of-user.html
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation1
Slides
http://csharp-video-tutorials.blogspot.com/2013/08/part-124-caching-multiple-versions-of.html
All ASP .NET Text Articles
http://csharp-video-tutorials.blogspot.com/p/free-aspnet-video-tutorial.html
All ASP .NET Slides
http://csharp-video-tutorials.blogspot.com/p/aspnet-slides.html
All Dot Net and SQL Server Tutorials in English
https://www.youtube.com/user/kudvenkat/playlists?view1&sortdd
All Dot Net and SQL Server Tutorials in Arabic
https://www.youtube.com/c/KudvenkatArabic/playlists
In Part 122 of the asp.net video tutorial, we discussed about fragment caching. Please watch Parts 122 before proceeding with this video. In this video we will discuss about, caching multiple versions of user control using VaryByControl attribute of the "OutputCache" directive.
We will be using tblProducts table for this demo. If you need the script to create and populate this table, please refer to Part 122, by clicking here.
http://csharp-video-tutorials.blogspot.com/2013/01/fragment-caching-in-aspnet-part-122.html
Link for code samples used in the demo
http://csharp-video-tutorials.blogspot.com/2013/02/caching-multiple-versions-of-user.html
Caching multiple responses of a user control declaratively, using "VaryByControl" attribute of the "OutputCache" directive
To cache multiple response of the user control, include "OutputCache" in the aspx of the UCProductsControl.ascx. VaryByControl"DropDownList1", indicates that a separate response must be cached for each varying value in DropDownList1.
Caching multiple responses of a user control programatically, using "VaryByControls" property of the PartialCachingAttribute
We can also achieve the same thing, by specifying "PartialCachingAttribute" on the UCProductsControl class as shown below.
[PartialCaching(60, VaryByControls "DropDownList1")]
public partial class UCProductsControl : System.Web.UI.UserControl
{
//.Rest of the UCProductsControl code
}
Please run the application and test. Notice that, as the product selections change in the dropdownlist, for each different selection a response from the user control is cached for 60 seconds. The difference between "User Control Server Time" and "User Control Client Time" proves this. Since, we don't have "Caching" set on the WebForm1.aspx, "Page Server Time" and "Page Client Time" stays the same always.
In our next video, we will discuss about when and how to use "VaryByParams" to cache multiple versions of a user control.