我有不同的子域名: 例如:
我使用OutputCache来追踪我的页面。 它看起来像:
[OutputCache(Location = System.Web.UI.OutputCacheLocation.Server, Duration = 1800, VaryByHeader = "Host")]
public ActionResult Index()
{
ClubSiteHomeModel model = new ClubSiteHomeModel(VClub);
return View(model);
}
我想删除一个子域的缓存数据。我该怎么办?