I am getting the "Load Report Failed Error" error after like every half an hour and then I have re-start the IIS server.
Note: report being the ReportClass object in the below code.
protected void Page_Unload(object sender, EventArgs e)
If
ViewState("Show_Report") = "True" Then
report.Close();
report.Dispose();
End If
End Sub
What am I doing wrong, shouldn't this resolve this issue?