配置文件中MyKey和MyValue的最大允许长度是多少?
<configuration>
<appSettings>
<add key="MyKey" value="MyValue" />
</appSettings>
</configuration>
解决方法:
据了解,webconfig文件中的键值对没有限制.
如果您打算将对象添加到配置文件中,请查看这篇文章,以帮助您完成任务
How to store custom objects in web.config ?