如何在会话中存储aspx页面
本文关键字:存储 aspx 页面 会话 | 更新日期: 2023-09-27 18:26:27
我在一次采访中问过这个问题。你能解释一下是否可以在一个会话中存储整个aspx页面吗。如果可能,我们应该使用哪种会话模式?你能给我提供任何链接或代码吗?这样我就会对此有所了解。
我认为他/她想询问大型会话状态变量对服务器内存的影响,如果是这样,这可能有助于
Disadvantage of using session state are:
Performance considerations :
Session-state variables stay in memory until they are either removed or replaced,
and therefore can degrade server performance. Session-state variables
that contain blocks of information, such as large datasets, can adversely affect
Web-server performance as server load increases.
源
以自定义方式缓存页面的正确方法是构建自己的提供程序。问题是,当从缓存请求或在缓存中添加项目时,Session对象尚未创建(为null),因此您无法使用会话来存储页面。