DevExpress 控件是否需要 ASP.NET 会话?
基本上,如果使用 web.config 关闭会话,它们的控件是否仍能完全发挥作用?
Basically, if the session is turned off by using web.config will their controls still be fully functional?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们的一些控件(例如 XtraCharts)使用会话来存储服务器上生成的图像。然而,所有此类控件都能够存储相应的信息,而不仅仅是在Session中。有关详细信息,请参阅二进制存储配置主题。此外,ASPxSpellChecker 在会话中存储自定义字典。这样做是为了为每个用户提供唯一的字典。没有想到与在 ASP.NET 控件中使用 Session 相关的其他内容。
Session is used by some of our controls, for example by XtraCharts, to store the image generated on the server. However, all such controls are able to store the corresponding information, not only in the Session. For the details, please refer to the Binary Storage Configuration topic. Also, the ASPxSpellChecker stores a custom dictionary in a Session. This is implemented to provide a unique dictionary for every user. Nothing else related to using Session in our ASP.NET controls comes to mind.