Adding a new report to an ASP Page
-
Hi, I have this old Web Application built using ASP. There is a common page for some reports where the users make the selections. Then it goes to the specific pages, where the user provides input for the report, then submits them (document.form1.submit()). I am adding a new report using SQL Reporting. the Page is already there, built by that common page. The problem is: if I put it in the Form's action - it goes to that specific location, like - my report is in "http://abc/ReportServer/blabla/reportviewer.aspx.." and when I run it, it tries to run from "http://www.xyz.com/reports/**abc/ReportServer/blabla**........" See the problem? Because I can not change the common page where there are all the layouts and codes to process user inputs for all the report pages. On the other hand, I want to send the user inputs for processing as well, but to my SQL ReportServer. Is there any way around it? At least, I want to directly run the SQL Report without worrying about the user inputs for now. Thanks. Ekjon.