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",因为它缺少部分声明


- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01