Show HTML text in asp applications

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everyone,

I have some fields from a database which contain html text.
How can I show this text in an asp page (<b> must be bold, red must be red
text, ...)?

thanks for the answers,

Filip
 
Hi,

Have a HtmlGenericControl and assign the HTML text to its InnerHtml
property.

You may also use a Label control and set its Text property to the HTML text.


Hi everyone,

I have some fields from a database which contain html text.
How can I show this text in an asp page (<b> must be bold, red must be red
text, ...)?

thanks for the answers,

Filip
 
Back
Top