。 亲爱的Dev Guys:)
我正在学习ASP.NET MVC3,当我使用Response.WriteSubsitution()方法时,我陷入困境。
每当我尝试在页面中使用它时,替换文本始终显示在页面顶部(screenshot here)。
考虑到我的控制器中有以下代码:
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Message = "Welcome to ASP.NET MVC!";
return View();
}
[OutputCache(Duration=20)]
public ActionResult About()
{
ViewBag.Date = DateTime.Now;
return View();
}
}
About.cshtml中的代码:
@using MvcApplication1;
@{
ViewBag.Title = "About Us";
}
<h2>About</h2>
<p>
Date : @ViewBag.Date<br />
Random Substitued number : @{ Response.WriteSubstitution(MvcApplication1.Helpers.Test); }
</p>
我的助手课程:
namespace MvcApplication1
{
public static class Helpers
{
public static string Test(HttpContext context)
{
Random r = new Random();
return r.Next(0, 10).ToString(CultureInfo.InvariantCulture);
}
}
}
我错过了什么吗?
谢谢!
使用解决方案进行编辑:
我用@Darin Dimitrov的解决方案解决了这个问题。
对于与我相同的人,这是我的新代码。
我的控制器:
[DonutOutputCache(Duration = 10)]
public ActionResult About()
{
ViewBag.Date = DateTime.Now;
return View();
}
public string RandomNumber()
{
Random r = new Random();
return r.Next(0, 10).ToString(CultureInfo.InvariantCulture);
}
MvcDonutCaching实现了我们必须使用的类DonutOutputCacheAttribute而不是内置的OutputCacheOutput。
我的观点:
@using MvcApplication1;
@{
ViewBag.Title = "About Us";
Layout = "~/Views/Shared/Mobile/Layout.cshtml";
}
<h2>About</h2>
<p>
Date : @ViewBag.Date<br />
Random Substitued number : @Html.Action("RandomNumber", true)
@Side
</p>
包重载Html.Action方法来控制缓存:)
感谢所有提供此主题的人。
答案 0 :(得分:4)
我正在学习ASP.NET MVC3,当我使用Response.WriteSubsitution()方法时,我陷入困境。
在ASP.NET MVC 3中忘记此方法为Phil Haack explains。根本就不要使用它。如果你想在ASP.NET MVC 3中实现甜甜圈缓存,那么该框架可以为您提供 nothing 。
如果您不想自己动手,可以third party packages启用此功能。