在 httpmodule 中设置变量读取 masterpage &内容页,asp.net C#

发布于 2024-12-09 17:52:26 字数 242 浏览 3 评论 0原文

是否可以在 httpmodule 中为变量设置值并读取 contentpage & 中的变量值母版页?

我想用它代替会话。该变量保存用户 ID 的值。

因为我网站上的每个页面都会创建许多不同的数据库连接,所以我认为多一个比拥有会话值更好?!你怎么认为?

我想创建一个可以发展壮大的网站。 (总是尝试以这种方式对我的网站进行编程) 这就是为什么我想去掉一些会话值。

谢谢!

马蒂亚斯。

Is it possible to set value to variable in httpmodule and read the value of the variable in contentpage & masterpage?

I want to use this instead of session. The variable holds the value of the userID.

Because every page on my site creates a number of different database connections i think that one more is better than having session values?! What do you think?

I want to create a site that can grow large. (Always tries to program my sites in this way)
So thats why I want to take away a number of session values.

Thanks!

Mattias.

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

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

发布评论

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

评论(1

不喜欢何必死缠烂打 2024-12-16 17:52:26

您可以使用下面的代码片段......

//Store data in Step1:
HttpContext.Current.Items.Add("Key", "Value");

//Retrieve data in Step2:
object value = HttpContext.Current.Items["Key"];

有关更多详细信息......阅读这些文章。

http://www.shubho.net/2011/01/using -httpcontextcurrentitems-as-data.html

http://forums.asp.net/t/1476647.aspx/1

you can use below Code snippet.....

//Store data in Step1:
HttpContext.Current.Items.Add("Key", "Value");

//Retrieve data in Step2:
object value = HttpContext.Current.Items["Key"];

For more detail... Read these articles.

http://www.shubho.net/2011/01/using-httpcontextcurrentitems-as-data.html

http://forums.asp.net/t/1476647.aspx/1

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