Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do DevExpress controls require ASP.NET session?

Basically, if the session is turned off by using web.config will their controls still be fully functional?

like image 684
O.O Avatar asked Jun 22 '26 09:06

O.O


1 Answers

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.

like image 90
DevExpress Team Avatar answered Jun 23 '26 23:06

DevExpress Team