Results 1 to 2 of 2

Thread: Textbox to display HTML text?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Oct 2002
    Location
    The Twilight Zone
    Posts
    295

    Textbox to display HTML text?

    Hi,

    How do i allow my textbox control to display html text?

    Say i have this:

    Code:
    string mytext = "here<br>is<br>some<br>text"
    
    textbox.text = mytext;
    
    the output will be here<br>is<br>some<br>text.
    I need the textbox to format the HTML

  2. #2
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: Textbox to display HTML text?

    An HTML textbox cannot format HTML as it is text only. The best you can do it do a search for <br>'s to replace with line returns.

    If you need to use rich text take a look at http://www.freetextbox.com/.

    HTH

    DJ

    If I have been helpful please rate my post. If I haven't tell me!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width