为了安全。
targetFramework属性的值非必须,根据自己网站添加,一般值值和自己.NetFramework版本一样。
在ASP.NET项目根目录下的Web.config
中有这样的一个节点:
<compilation debug="true" targetFramework="4.5" />
在开发阶段的时候,可以这样设置。当把网站部署到服务器上后,必须把debug
设置成false,如下:
<compilation debug="false" targetFramework="4.5" />