Re: export text show as html
- From: "amir" <mogets@xxxxxxxxx>
- Date: 13 Mar 2007 01:44:36 -0700
On Mar 12, 6:02 pm, "Jani Järvinen [MVP]"
<j...@xxxxxxxxxxxxxxxxxxxxxx> wrote:
Hi Amir,
i was wandering if there is an easy way to export text from my
database to an html report...
Unless you want to use general-purpose reporting systems/engines like
Crystal Reports for this task, it is best to write your own code.
I've lost count of how many database-data-to-html applications I've written
during the years, but in every single one the basic principle has been the
same: run a SQL query, loop through the results, and generate your HTML code
based on the data.
From your question it is difficult to say whether you find the database side
or the HTML generation side more difficult, but outputting HTML is quite
simple actually. Also, you could use a web page editor two design an HTML
file skeleton, and then embed certain special tags inside it. Then your C#
application would replace those tags with the database data.
It is also possible to convert your database stuff into XML format, and then
use XSLT (XSL transformations) to generate the HTML from these XML files.
Good luck!
--
Regards,
Mr. Jani Järvinen
C# MVP
Helsinki, Finland
j...@xxxxxxxxxxxxxxxxxxxxxxxxxx://www.saunalahti.fi/janij/
Thnx for the info. Actually dont find niether of the sides (db,html)
difficult just wandered maybe they had a feature for that.
thnx a lot,
amir.
.
- References:
- export text show as html
- From: amir
- Re: export text show as html
- From: Jani Järvinen [MVP]
- export text show as html
- Prev by Date: Re: Invoke Methods with Arbitrary (Known) Parameters From a Single Method
- Next by Date: TabControl Page with Scrollbar
- Previous by thread: Re: export text show as html
- Next by thread: Re: export text show as html
- Index(es):
Relevant Pages
|