1.缓存文件没有读写权限,而实际上已经开启了读写权限如下图:

解决办法就是将缓存文件删除或者重命名。

 

2.AqiooPlat.Web的调试方法 输入http://localhost:3455/article/channel.html?channelID=21。如果页面 #blockcomponent(ColumnHeadArticleViewComponent with  "num=6" "classid=-1" "topin=1" "sortField=a_arrtim desc")无法调试的话多半是因为调用了缓存文件

  string path = HttpContext.Current.Server.MapPath("/Html") + MGfile.GetFilePath(Utils.GetRemoveUpdateStr(Request.Uri.PathAndQuery), Level.level4);
            bool iscache = Utils.IsFileExits(path, Level.level4);
            Utils.DealHtmlPageCache(this, viewname, path, iscache);
View Code

找到文件路径删除缓存文件,或者重命名文件即可

posted on 2014-09-04 11:08  随心所意  阅读(98)  评论(0)    收藏  举报