Partial View Auto Refresh in ASP.NET MVC3

Problem

A partial view in ASP.NET MVC3 needs to be refreshed on every particular interval.

Let us take a typical ASP.NET MVC3 application. In the HomeController, there is a action called “Quote” which displays funny software quote for every new request like below:

[code lang="csharp"] public class HomeController : Controller
{
public static string[] quotes = {
"The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time",
"In order to understand recursion, one must first understand recursion",
"I have always wished for my computer to be as easy to use as my telephone; my wish has come true because I can no longer figure out how to use my telephone.",
"The gap between theory and practice is not as wide in theory as it is in practice.",
"Nine people can’t make a baby in a month"
};

// other actions

public ActionResult Quote()
{
var r = new Random();
var rv = r.Next(0, 4);
ViewBag.Quote = quotes[rv];
return PartialView("_Quote");
}
}
[/code]

The partial view “_Quote.cshtml” has nothing other than the code below

[code lang="html"]

@ViewBag.Quote

[/code]

This whole thing needs to be refreshed without any user interaction on every 10 seconds

Solution

Use setInterval() at client side and set up OutputCacheAttribute on the respective action. The duration should be same on both side.

In the corresponding script of this view, place the below JavaScript:

[code lang="javascript"]

// jQuery used

setInterval("$('#quote').load('/home/quote')", 10000); // every 10 sec

[/code]

In the main view, create a div with id “quote” like:

In the action method set the OutputCacheAttribute like:

[code lang="csharp"] [OutputCache(NoStore=true, Location = OutputCacheLocation.Client, Duration = 10)] // every 10 sec
public ActionResult Quote()
{
...
}
[/code]

Mark this!
  • Digg
  • del.icio.us
  • Add to favorites
  • RSS