0

i want to add hyperlink to specific text which is selected. i am using richtextbox for sending formatted text in email but i a unable to add hyperlink to a specific text. like my richtextbox contains text "For more information click here" i want to add hyperlink to click here dynamically. Thanks in advance

Pratik
  • 11,534
  • 22
  • 69
  • 99
Sumit Goyal
  • 145
  • 1
  • 2
  • 13
  • this has been answered: http://stackoverflow.com/questions/9279061/dynamically-adding-hyperlinks-to-a-richtextbox – Boppity Bop Feb 14 '13 at 07:31

1 Answers1

-2

You can dynamically replace "click here" with

<a href="your link">click here</a>

Hope it helps :)

Avishek
  • 1,896
  • 14
  • 33