using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication3.Controllers
{
public class HomeController : Controller
{
[OutputCache(Duration=10)]
public string Index()
{
return DateTime.Now.ToString("T");
}
public ActionResult About()
{
return View();
}
}
}
我只是嘗試在asp.net mvc2中顯示時間。但是當我運行上面的程序時,它會給出以下例外,請你告訴我什麼是錯的?在asp.net中顯示時間?
'/'應用程序中的服務器錯誤。 指令或配置設置配置文件必須指定'varyByParam'屬性。 描述:執行當前Web請求期間發生未處理的異常。請查看堆棧跟蹤以獲取有關該錯誤的更多信息以及源代碼的位置。
異常詳細信息:System.Web.HttpException:指令或配置設置配置文件必須指定'varyByParam'屬性。
源錯誤:
在當前web請求的執行過程中生成未處理的異常。關於異常的來源和位置的信息可以使用下面的異常堆棧跟蹤來標識。