Reputation: 1
I am trying to use reportviewer in sharepoint. I added the assemblies required and created an aspx calling the rsweb:reportviewer.
I get this error In remote mode, the Report Viewer control requires session state be enabled or Report Server connection information specified in the config file.
can anyone help me? thanks
Upvotes: 0
Views: 968
Reputation: 21657
Set EnableSessionState = true
in you page directive in your aspx page. Add the following code in the System.WebServer/Modules section.
<add name="Session" type="System.Web.SessionState.SessionStateModule" />
Upvotes: 1