如何设置“cookieName” “sessionState”的属性以编程方式在我的 web.config 中添加 XML 元素
目前多个应用程序共享同一个会话 cookie,我不希望出现这种情况,但是,我想在代码中设置该值,而不是使用 web.config 硬编码一个值。
有谁知道如何做到这一点?
Multiple applications are sharing the same session cookie at the moment and I don't want this to be the case, however, I would like to set the value in code rathr than hardcode a value using the web.config.
Does anyone know how thi can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将应用程序特定的配置文件放置在每个应用程序文件夹中,然后在 web.config 中像这样引用它们:
在每个 auth.config 中,您可以执行您需要的操作:
You can place application specific config files in each application folder and then reference them like this in the web.config:
In each auth.config, you can then do what you need:
这是你得到它的方法:
如何以编程方式获取会话 cookie 名称?
但你当然也可以设置它..
This is how you get it:
How to programmatically get session cookie name?
but you can surely set it as well..