PagesSection pagesSection = ConfigurationManager.GetSection("system.web/pages") as PagesSection;
if ((null != pagesSection) && (pagesSection.EnableSessionState == PagesEnableSessionState.True))
// Session state is enabled
else
// Session state is disabled (or readonly)
5条答案
按热度按时间jm2pwxwz1#
如果使用
HttpContext.Current
,则不会出现异常:gev0vcfq2#
您希望查询
Web.config
中的EnableSessionState属性。rryofs0p3#
以下是确定是否启用会话状态的方法:
carvr3hs4#
您可以使用类似这样的代码(伪代码)
yyyllmsg5#
对于dot net 6,您可以用途: