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
Asked
Active
Viewed 549 times
0
-
this has been answered: http://stackoverflow.com/questions/9279061/dynamically-adding-hyperlinks-to-a-richtextbox – Boppity Bop Feb 14 '13 at 07:31
1 Answers
-2
You can dynamically replace "click here" with
<a href="your link">click here</a>
Hope it helps :)

Avishek
- 1,896
- 14
- 33
-
-
@JohnWillemse: he is sending the text in email. So, if he replaces the text dynamically before putting in mail body, and sets `IsHtmlEnabled = true` , he can achieve what he wants. – Avishek Feb 14 '13 at 08:35
-
@Avishek True. After re-reading the question it's a bit ambigeous indeed what exactly is the requirement. – John Willemse Feb 14 '13 at 08:37