Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rich Text Box

Status
Not open for further replies.

Shift838

IS-IT--Management
Jan 27, 2003
987
0
0
US
I am coding a simple web site and wanting to pull in a text file to a text box but have it recognized html tags like <b> for bold, etc and display it correctly.

Is there a control that I need to use on the ASP.net form. I am using VB .net for my backend.

It's small amount of code to pull the text file:

Code:
Dim sr As New StreamReader("impmsg.txt")
        Dim line As String
        line = sr.ReadToEnd()
        txtimp.Text = line



this will allow me to simply update a text file and not have to update code. But I really want to be able to do HTML display.

Any suggestions is greatly appreciated.

Chris
 
You will need a 3rd party control to do this. We use Telerik RadEditor.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top