以编程方式删除 Web.config 设置

发布于 2024-12-16 17:27:52 字数 313 浏览 0 评论 0原文

在以编程方式删除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不羁少年 2024-12-23 17:27:52

对于任何可能感兴趣的人,我的工作方式如下:

我没有像 msdn 代码那样在 for 循环之外进行删除和更新,而是在内部进行:

int modsCount1 = modsCollection.Count;
for (int i = modsCount1 - 1; i > -1; i--)
{
    if (modsCollection[i].Owner == "User Name")
    {
        configModFound = modsCollection[i];
    }
    // Remove it and save the change to the configuration database  
    modsCollection.Remove(configModFound);
    webApplication.Update();
}

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:

int modsCount1 = modsCollection.Count;
for (int i = modsCount1 - 1; i > -1; i--)
{
    if (modsCollection[i].Owner == "User Name")
    {
        configModFound = modsCollection[i];
    }
    // Remove it and save the change to the configuration database  
    modsCollection.Remove(configModFound);
    webApplication.Update();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文