2013-08-16 75 views
0

我正在使用telerik Tabstrip。在頁面瀏覽量(4)我有Reportviewers。ReportViewerSession已過期

這些報告位於第三和第四個選項卡中。經過一段時間後,我到達選項卡,報告查看器會話過期。

我試過KeepSessionAlive = true,但沒有幫助。有人建議修復這個嗎?

  <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" KeepSessionAlive="true" 
       Height="1400px" ProcessingMode="Remote" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="100%" SizeToReportContent="True" 
       Visible="true"> 
      <ServerReport ReportPath="/Prod/EmployeeReport" /> 
      </rsweb:ReportViewer>  

       </telerik:RadPageView> 

錯誤:

 Exception information: Exception type: AspNetSessionExpiredException Exception  message: Die ASP.NET-Sitzung ist abgelaufen oder konnte nicht gefunden >werden. at 
Microsoft.Reporting.WebForms.ViewerDataOperation..ctor() at   
    Microsoft.Reporting.WebForms.HttpHandler.GetHandler(String operationType) at   Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionS> tep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&       >completedSynchronously) 

回答

1

我面臨着像你一樣的問題了3天,我曾試圖幾乎一切都像初始化會話變量,增加的sessionState超時,設置cookie的=假,配置一個sessionstate服務器,但沒有爲我工作。

我想通了,從真到假設置requireSSL解決了這個問題,因爲我沒有使用SSL

<httpCookies httpOnlyCookies="true" requireSSL="false" domain="" /> 

這是我的ReportViewer配置在我的aspx頁面accesing頁面

<rsweb: ReportViewer ID ="ReportViewer1" runat ="server" Font-Names ="Verdana" Font-Size="8pt" 
SizeToReportContent="true" InteractivityPostBackMode="AlwaysSynchronous" AsyncRendering="true" KeepSessionAlive="true" 
    ProcessingMode="Remote" Width="865px"> 
    <ServerReport ReportPath="/REPORTFOLDER/REPORTNAME" ReportServerUrl="http://localhost/Reportserver" />