Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用于提供 RSS 提要的页面,但是每次用户的 RSS 客户端与提要同步时,它都会触发会话状态 (Session_Start),从而使访问者计数跟踪数字出现偏差。我希望我可以使用一些代码在打开这个特定页面时不触发会话变量(尽管是通过 RSS)。
您可以使用 web.config 中的以下条目禁用特定位置的会话状态:
<location path="MyRssFeedLocation"> <system.web> <pages enableSessionState="false" /> </system.web> </location>