I'm working on SSRS report. It works fine when I run it from Report Builder.
Now, when I run the same report from my site, which uses Report viewer to show the report, timeout issue occurs. So I have observed that it times out after 90 seconds. Can anyone please help me what should I do in this case?
- I've set Do not timeout report from Site Settings
- I've also set Time in Report Dataset properties.
I found the solution, it was issue with ajaxToolkit:ToolkitScriptManager
I needed to add AsyncPostBackTimeout="56000" to ajaxToolkit:ToolkitScriptManager
.
Before
<ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True"/>
After
<ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True" AsyncPostBackTimeout="56000"/>
Now it works fine.