每日踩坑 2019-04-09 Web.config configuration 蓝色波浪线 未声明 configuration 标签的解决办法
作者:互联网
百度看了几篇答案都没有给出解决方案,看了看 MSDN。
https://docs.microsoft.com/zh-cn/previous-versions/ms228147(v=vs.110)
似乎是因为webconfig的改变造成的。
1 <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> 2 3 <system.web> 4 <compilation debug="true" targetFramework="4.5.2" /> 5 <httpRuntime targetFramework="4.5.2" /> 6 </system.web> 7 </configuration>
加上代码中红字即可解决问题。
标签:Web,MSDN,zh,cn,未声明,configuration 来源: https://www.cnblogs.com/Aaxuan/p/10674903.html