以编程方式删除 Web.config 设置
在以编程方式删除 Web.config 设置时遇到问题,我尝试了 此 msdn 代码 (同时使用 SPWebService 和 SPWebApplication)希望它能工作,但尽管添加有效,但删除似乎不起作用。
我正在使用“添加已激活的功能”方法,并使用“删除已停用的功能”且该功能具有 WebApplication 范围。
我已经尝试过上述脚本,但结果保持不变。
是否有一些我不知道的必要设置?
Having trouble on removing Web.config settings programmatically I tried this msdn code (using both SPWebService and SPWebApplication) hoping it would work but although the adding works, the remove doesn´t seem to work.
I'm using the Add on a feature Activated method and the remove on a feature deactivated and the feature has WebApplication Scope.
I've tried the mentioned script but the result stayed the same.
Is there some necessary setting that I'm not aware of?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何可能感兴趣的人,我的工作方式如下:
我没有像 msdn 代码那样在 for 循环之外进行删除和更新,而是在内部进行:
For anyone who may be interested, I got it working like this:
Instead of doing the remove and update outside the for cycle like the msdn code I do it inside: