The configuration section #39;uri#39; cannot be read because it is missing a section declaration(无法读取配置部分“uri,因为它缺少部分声明)
问题描述
我尝试使用 .net 4.5 在 IIS7 上安装 BugNET
I tried to install BugNET on IIS7 with .net 4.5
一直显示
无法读取配置部分uri",因为它缺少部分声明
The configuration section 'uri' cannot be read because it is missing a section declaration
很像这个问题和这个 但是我的应用程序池设置为 4.0.
It is pretty much like this issue and this one But my app pool was set to 4.0.
它在带有 .net 4.5 的 IIS8 上运行良好
And it works fine on IIS8 with .net 4.5
我认为设置是相同的.
有什么帮助吗?谢谢
推荐答案
事实证明它确实意味着它缺少一个部分声明.
It turns out it does mean it is missing a section declaration.
我只是添加
<section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<configSections>
然后它就可以正常工作了.
Then it works fine.
这篇关于无法读取配置部分“uri",因为它缺少部分声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法读取配置部分“uri",因为它缺少部分声明


基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01