I am using the window.open function to run some reports using crystal. Some of these reports are large. How can I display a message or something telling the user "Processing Report..Please Wait"
Right now the window opens blank until the report gets populated.
any help would be appreciated..
thanks
Dim strRedirect As String
strRedirect = "../ReportsMenu/ReportName.aspx"
Response.Write("<script language='javascript'>" & vbCrLf)
Response.Write("wndcht=window.open('" + strRedirect + "','_new', 'toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,left=0,top=0');")
Response.Write("<" & "/" & "script" & ">" & vbCrLf)
Right now the window opens blank until the report gets populated.
any help would be appreciated..
thanks
Dim strRedirect As String
strRedirect = "../ReportsMenu/ReportName.aspx"
Response.Write("<script language='javascript'>" & vbCrLf)
Response.Write("wndcht=window.open('" + strRedirect + "','_new', 'toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,left=0,top=0');")
Response.Write("<" & "/" & "script" & ">" & vbCrLf)