Question about generating HTML

  • Thread starter Thread starter Connor T
  • Start date Start date
C

Connor T

Hi,

I wish to generate some relatively simple html reports from my ODBC
database.

I'm quite happy to write out raw html to a file, but before I do that I just
wondered if there is any better solution for creating these reports?

I was initially trying to get mailmerged word files working ( After giving
up with crystal reports ) , however I have had issues on client's machines
where with a different version of word it
wasnt working - So i decided to go down the html route for ease of
support....

Oh; The application is a standalone application, rather than a web based
one.

Rgds,
Dan
 
:
: Hi,
:
: I wish to generate some relatively simple html reports
: from my ODBC database.
:
: I'm quite happy to write out raw html to a file, but before
: I do that I just wondered if there is any better solution for
: creating these reports?
:
: I was initially trying to get mailmerged word files working
: ( After giving up with crystal reports ) , however I have had
: issues on client's machines where with a different version of word
: it wasnt working - So i decided to go down the html route for ease
: of support....
:
: Oh; The application is a standalone application, rather than
: a web based one.
:
: Rgds,
: Dan


Try using XSL to generate your HTML docs. If your data is formatted as
XML from your datastore, it's a relatively simple matter to transform
that with XSL. If not, it may still be a viable option to convert your
data into XML manually and then pass that it into the XSL transformation
style sheet.


HTH

Ralf
 
Hi,

http://www.codeproject.com/csharp/RdlProject.asp

Ken
-----------
Hi,

I wish to generate some relatively simple html reports from my ODBC
database.

I'm quite happy to write out raw html to a file, but before I do that I just
wondered if there is any better solution for creating these reports?

I was initially trying to get mailmerged word files working ( After giving
up with crystal reports ) , however I have had issues on client's machines
where with a different version of word it
wasnt working - So i decided to go down the html route for ease of
support....

Oh; The application is a standalone application, rather than a web based
one.

Rgds,
Dan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top