【发布时间】:2025-11-25 12:25:01
【问题描述】:
我正在为 Javascript 提供一个如下所示的控制器方法:
[OutputCache(Duration = 120)]
[Compress]
public ActionResult JavascriptFile(String scriptName) {
string content;
if (HttpContext.IsDebuggingEnabled) {
content = ReadApplicationScript(string.Format("~/scripts/{0}", scriptName));
return Content(content, "application/javascript");
}
else {
content = ReadApplicationScript(string.Format("~/scripts/Built/{0}", scriptName));
return Content(content, "application/javascript");
}
}
Compress 属性来自here。
当我运行 ySlow 时,我在“添加过期标题”上获得了 F 级。我该怎么做才能添加这些?
【问题讨论】:
标签: asp.net-mvc yslow controller-action expires-header