ASP Report Wizard
Welcome to the ASP Report Wizard. Please click on a table or report below to browse
or check several tables and click on Build Report to build a new report.
Make sure you check the tutorial section on Building your first Report using the ASP report wizard.
You can also write your reviews and ask questions about this product at our discussion area
Click here to download a copy of this product.
|
|
Source Code
Put the following lines at the top of your ASP Page before any HTML tags
<%
Dim objReport, strConnectionString
Set objReport = Server.CreateObject("AspWebSolution.ReportWizard")
'ACCESS connection string
strConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" & _
"C:\Program Files\Microsoft Visual Studio\VB98\nwind.mdb;"
'SQL Server connection string
'strConnectionString = "Provider=MSDASQL;Driver={SQL Server};Server=WHICHMAN;Database=Northwind;User ID=sa;Password=sa;"
'NOTE: You must call the Init procedure before adding any HTML Tags/Text into your page
objReport.Init(strConnectionString)
%>
Place your HTML code here.
Place your report wizard here where you want your reports to appear
<%
objReport.DisplayReports
Set objReport = Nothing
%>