Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gearheadgood

    I'm trying the following code and k

    Here is the function from the &quot;view source&quot; function page_OnLoad() { var result; var qstr = <%=crReportID%>; locstr = &quot;LaunchReport.asp?ReportID=&quot; + qstr; windowprops = &quot;fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes&quot...
  2. gearheadgood

    I'm trying the following code and k

    crReportID is a variable created in my ASP code. It is an integer derived from the query string. I tried the quotes but it did not work !
  3. gearheadgood

    I'm trying the following code and k

    I'm trying the following code and keep getting a syntax error in the first line: var qstr = <%=crReportID%>; locstr = &quot;LaunchReport.asp?ReportID=&quot; + qstr windowprops = &quot;fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes&quot...
  4. gearheadgood

    Open a report in a new browser

    Turkbear any ideas ? Thanks in advance !
  5. gearheadgood

    Open a report in a new browser

    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(&quot;CenterID&quot;) StartDate = Request.QueryString(&quot;StartDate&quot;) EndDate =...
  6. gearheadgood

    Open a report in a new browser

    Getting Close: Here's the code: function RunRpt(pstr){ var qstr = pstr locstr = &quot;LaunchReport.asp?ReportID=&quot; + qstr windowprops = &quot;fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes&quot...
  7. gearheadgood

    Open a report in a new browser

    Here is my current code, works like a charm: Dim sTemp sTemp = crReportID & &quot;&promptex-CenterName=&quot; & Replace(CenterName, &quot;&&quot;, &quot;§&quot;) & _ &quot;&promptex-DischargeFilter=&quot; & CStr(DischargeFilter) & _ &quot;&promptex-StartDate=&quot; & StartDate...
  8. gearheadgood

    Open a report in a new browser

    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,

Part and Inventory Search

Back
Top