如何从 Web 应用程序中找出 ASP.NET 中的会话大小?
如何从 Web 应用程序中找出 ASP.NET 中的会话大小?
How to find out size of session in ASP.NET from web application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 Web 应用程序中找出 ASP.NET 中的会话大小?
How to find out size of session in ASP.NET from web application?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果您尝试在运行时而不是在调试跟踪中获取会话的大小,您可能需要尝试如下操作:(
灵感来自 http://www.codeproject.com/KB/session/exploresessionandcache.aspx)
If you're trying to get the size of Session during runtime rather than in debug tracing, you might want to try something like this:
(Inspired by http://www.codeproject.com/KB/session/exploresessionandcache.aspx)
上面答案中的代码一直给我相同的数字。 这是最终对我有用的代码:
The code in the answer above kept giving me the same number. Here is the code that finally worked for me:
我认为您可以通过将 Trace="true" 添加到 aspx 页面的页面指令来找到该信息。 然后,当页面加载时,您可以看到有关页面请求的大量详细信息,包括我认为的会话信息。
您还可以通过在 web.config 文件中添加一行来在整个应用程序中启用跟踪。 就像是:
I think you can find that information by adding Trace="true" to the page directive of a aspx page. Then when the page loads you can see a large number of details regarding the page request, including session information i think.
You can also enable tracing in your entire application by adding a line to your web.config file. Something like:
这是我的代码,用于将所有当前会话变量及其大小(以 kB 为单位)放入字典中。
This is my code for getting all current Session variables with its size in kB into a Dictionary.