convert html string into a html document

  • Thread starter Thread starter csgraham74
  • Start date Start date
C

csgraham74

Hi,

Ive posted on this previously but had no response. Basically i need to
build some html using a rich text editor. Then i want to actually
create an html document from this and save it to my server. Does
anyone have any examples on how to do this ??

I dont really understand how to get from HTML string to HTML document.
I can probably work out how to save this. do i create an html object ??

Any help appreciated

Colin Graham
 
csgraham74 said:
Ive posted on this previously but had no response. Basically i need to
build some html using a rich text editor. Then i want to actually
create an html document from this and save it to my server. Does
anyone have any examples on how to do this ??

I'm not entirely clear what you're trying to do here...

Are you trying to use the rich text box to enter fully formatted data (e.g.,
different font sizes, bold text, etc.etc) in a "WYSIWYG" style, and then
convert this to HTML (so that all the appropriate tags get inserted to make
the HTML when viewed in the browser look like the original rich text)? If
so, I suspect the reason you didn't get an answer is because this is
potentially a lot of work.

I've written code in the past to convert raw .rtf content to HTML, and it
very quickly gets very complex, much more than anyone would be able to help
with via the newsgroup. There may be 3rd party components that you could
use, but I don't have any knowledge of them.

If you are using the rich text box to get the user to enter the raw HTML (so
they would enter, "<p>Here is some <strong>text</strong>.</p>", then
converting this to an HTML file is simply a matter of reading the content
out using the rich text box's .Text property, and then saving it to a .htm
file on disk. An HTML file is simply a text file with HTML-formatted text
within it, and usually a .htm or .html file extension.

Or am I still missing what you're trying to achieve?
 
Thanks guys,

yeah it is a bit of weird one - i am using a rich text editor and i
have built the html in memory as a string. The step that i need a
solution for is the save to a document which has an .htm extension.

I dont know how do do this - any ideas ???
 
Back
Top