index | search | no replies | posting guidelines | help | login | register |
Index » Products » ASP Report Wizard v2 |
| |||||||
Feb 16 2004, 2:30 AM |
| ||||||
Kevin Henderson![]() ![]() ![]() from: Houston | Hello, I installed what seems to be the newest package, set the permissions etc.. If I turn write permissions 'off' I get an error. However, The install on the server went fine but I get a blank screen when attempting to access the page. Seemingly no matter what I do, just a blank page. All of my other asp pages work, including ones with connect strings on the same server. I've tried moving the databases around, inserting the object into other pages etc.. No go. Please help. <% Dim objReport, strConnectionString Set objReport = Server.CreateObject("AspWebSolution.ReportWizard") strConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE " & "C:\main.mdb;" objReport.Init(strConnectionString) %> <html> <head> <title>blah<title> <body> report <% objReport.DisplayReports Set objReport = Nothing %> </body> </html> | ||||||
Feb 16 2004, 7:54 AM |
| ||||||
whichman![]() ![]() ![]() from: Laurel, MD | You are calling a different object - i.e. version 1. This is ReportWizard2 Do this: Dim objReport, strConnectionString Set objReport = Server.CreateObject("AspWebSolution.ReportWizard2") ------------------------- Master of the Game | ||||||
Pages: (1) [1] |