user2719449
user2719449

Reputation: 13

Disable session for Report Viewer web control in ASP.Net

I'm new to working with SSRS, and I have a problem in which I am deploying SSRS setup into a load balance environment with strict requirements that sessions cannot be used. I just need to know the options on how best to do this, any help on a starting point would be much appreciated.

-Thanks

Upvotes: 1

Views: 2367

Answers (1)

suff trek
suff trek

Reputation: 39777

You can turn SessionState Off in the project web.config, but if you do so, you have to enable ReportViewerServerConnection:

Check http://msdn.microsoft.com/en-us/library/ms251661.aspx for more details.

Upvotes: 1

Related Questions