Access RichText for Web Pages

  • Thread starter Jeffrey A. Voigt
  • Start date
J

Jeffrey A. Voigt

I would like to know how I could possibly do the following. We have a form
in which users enter information into a rich text box. They can even insert
pictures, tables, whatever...

My question is, is it possible that I can get the exact representation out
of the Rich Text box and put it into a web page dynamically?

I can get access to the xml form which has the xml in it's [content] field.
I just don't know how to get the image to show up correctly.

Can this be done!?

Thanks,
-jv
 
B

Brian Teutsch [MSFT]

There are some older threads that discuss the technique to do this.
Basically, the image is Base64, so you need to decode it before sending to
the browser. The previous thread details how to repoint the src tag to an
ASP.NET page that will decode and send the stream. Sorry we don't have a
real example to give you right now.

Thanks,
Brian
 
Top