viewing access report throught asp.net???
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Ok, I want to view an access report in the browser using ASP.NET. I found some vb.net code that i thought would work in asp.net but it didn't, there is what i found, if anyone knows how to make this work in asp.net or has any other ideas please let me know. Thank you, Santana Dim appAccess as new Access.Application appAccess.OpenCurrentDatabase "Q:\books.mdb" 'The following line views the report appAccess.Visible = True appAccess.RunCommand acCmdAppMaximize appAccess.DoCmd.OpenReport "rpt_1", acViewPreview 'The following line prints the report 'appAccess.DoCmd.OpenReport "ReportName, acViewNormal appAccess.CloseCurrentDatabase appAccess.Quit appAccess = Nothing