G
Guest
I have a page with a MultiView control. The page finishes by running a report
(via a page redirect).
Because there is often a delay with ReportsServer, I want to display a
"final" view of "Report is loading please wait..." with a user-selectable
hyperlink to the report (in case of timeout).
My problem is, the re-direct kicks in immediately and the final View isn't
displayed.
Me.ControlDocHyperLink.NavigateUrl =
"~/secure/report_viewer.aspx?report=%2fLiberty%2f012+Control+document&pass_id=" & Me.NewPassListBox.SelectedValue.ToString
Me.MultiView1.ActiveViewIndex = 4 '# does not appear..
Response.Redirect("~/secure/report_viewer.aspx?report=%2fLiberty%2f012+Control+document&pass_id=" & Me.NewPassListBox.SelectedValue.ToString, False)
Any ideas? I thought I could remove the redirect command in code and change
the page's META tag to REFRESH with a short timer instead, but I can't find
how to do this.
(via a page redirect).
Because there is often a delay with ReportsServer, I want to display a
"final" view of "Report is loading please wait..." with a user-selectable
hyperlink to the report (in case of timeout).
My problem is, the re-direct kicks in immediately and the final View isn't
displayed.
Me.ControlDocHyperLink.NavigateUrl =
"~/secure/report_viewer.aspx?report=%2fLiberty%2f012+Control+document&pass_id=" & Me.NewPassListBox.SelectedValue.ToString
Me.MultiView1.ActiveViewIndex = 4 '# does not appear..
Response.Redirect("~/secure/report_viewer.aspx?report=%2fLiberty%2f012+Control+document&pass_id=" & Me.NewPassListBox.SelectedValue.ToString, False)
Any ideas? I thought I could remove the redirect command in code and change
the page's META tag to REFRESH with a short timer instead, but I can't find
how to do this.