I am trying to use reportviewer in sharepoint. I added the assemblies required and created an asp开发者_运维知识库x 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
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" />
精彩评论