Microsoft Official Course: Building Responsive Pages in Applications
Microsoft Official Course: Building Responsive Pages in Applications
Course
Module09
Download full
HTML
ASP.NET ASP.NET
Pages Engine
Request for
Refresh changed content
Section
Download
only updated
HTML
Using AJAX in an MVC 4 Web Application
@Ajax.ActionLink(
"Refresh",
"HelloWorld",
new AjaxOptions{
HttpMethod = "POST",
UpdateTargetId = "divMessage",
InsertionMode = InsertionMode.Replace
}
)
Lesson 2: Implementing a Caching
Strategy
Caching:
Browser Cache:
Proxy Cache:
Response.Cache.SetCacheability(HttpCacheability.Private);
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Demonstration: How to Configure Caching