[.net]webform 版本冲突

ASP.NET Web Pages版本问题

调试后浏览器提示:

检测到 ASP.NET Web Pages 的冲突版本: 指定的版本为“1.0.0.0”,而 bin 中的版本为“2.0.0.0”。要继续操作,请删除应用程序 bin 目录中的文件,或者删除 web.config 中的版本指定。 在 Web.config 中添加以下配置解决:

<appSettings>
<add key="webpages:Version" value="2.0.0.0" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>

参考自:http://www.cnblogs.com/soundcode/p/7463676.html

上一篇:Git报错:error: cannot open .git/FETCH_HEAD: Read-only file system


下一篇:git报错 error: cannot stat ‘'web/js': Permission denied