在 web.config 中动态填充身份

发布于 2024-08-10 21:04:12 字数 472 浏览 8 评论 0原文

有没有一种方法可以从我后面的代码动态填充 web.config 中身份的用户名和密码...因为我无法对其进行硬编码。

<identity impersonate="true" userName = "Admin" password= "xyz">

任何帮助..????

谢谢

这是第一部分,第二部分我想如果我得到这个我可以解决......

第二部分链接文本

我得到了一个可能帮助我解决问题的链接,但我很难理解它并实施...... 链接文本

任何帮助...

Is there a way i can dynamically populate the username and password of identity in web.config from my code behind... as i cannot hard code it.

<identity impersonate="true" userName = "Admin" password= "xyz">

any help..????

Thanks

This the first part the 2nd part i think i can solve if i get this....

2nd part link text

I got a link which might help me solve the problem but i am having difficulty understanding it and implementing.....
link text

any help...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

故事还在继续 2024-08-17 21:04:12

我认为这可能有帮助:
http:// www.velocityreviews.com/forums/t122342-how-to-save-changes-to-a-web-config-section.html

供参考:

public void SaveConfig(Configuration config)
{
    RemotingManager.ShutdownTargetApplication();
    config.NamespaceDeclared = true;

    // check if session expired
    if (String.IsNullOrEmpty(ApplicationPath) ||
        String.IsNullOrEmpty((string)Session[APP_PHYSICAL_PATH]))
    {
        Server.Transfer("~/home2.aspx");
    }

    config.Save(ConfigurationSaveMode.Minimal);
}

I think this might help:
http://www.velocityreviews.com/forums/t122342-how-to-save-changes-to-a-web-config-section.html

For reference:

public void SaveConfig(Configuration config)
{
    RemotingManager.ShutdownTargetApplication();
    config.NamespaceDeclared = true;

    // check if session expired
    if (String.IsNullOrEmpty(ApplicationPath) ||
        String.IsNullOrEmpty((string)Session[APP_PHYSICAL_PATH]))
    {
        Server.Transfer("~/home2.aspx");
    }

    config.Save(ConfigurationSaveMode.Minimal);
}
还给你自由 2024-08-17 21:04:12

web.config 的设置是为固定帐户模拟而设计的。

如果您确实不具备灵活性,则可以选择另一个模拟选项,

http ://msdn.microsoft.com/en-us/library/ms998351.aspx

That setting is web.config is designed for fixed account impersonation.

If you are really in bad of the flexibility, you may pickup another impersonation option,

http://msdn.microsoft.com/en-us/library/ms998351.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文