Here is the function from the "view source"
function page_OnLoad()
{
var result;
var qstr = <%=crReportID%>;
locstr = "LaunchReport.asp?ReportID=" + qstr;
windowprops = "fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes"...
I'm trying the following code and keep getting a syntax error in the first line:
var qstr = <%=crReportID%>;
locstr = "LaunchReport.asp?ReportID=" + qstr
windowprops = "fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes"...
Here is the code I run in the before show event:
Function Page_BeforeShow()
Dim CenterID
Dim StartDate
Dim EndDate
Dim crReportID
CenterID = Request.QueryString("CenterID")
StartDate = Request.QueryString("StartDate")
EndDate =...
Here is my current code, works like a charm:
Dim sTemp
sTemp = crReportID & "&promptex-CenterName=" & Replace(CenterName, "&", "§") & _
"&promptex-DischargeFilter=" & CStr(DischargeFilter) & _
"&promptex-StartDate=" & StartDate...
Is there a way to launch a report in a new browser window ?
I have a launchreport.asp which calls my showreport.csp.
Can;t quite figure out how to open the report in a new browser window !
tks,
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.