AKM
AKM

Reputation: 31

How can I make a textbox text as a hyperlink?

How can I make a a textbox text as a hyperlink? I have a asp.net text box for a user to enter his/her email in and I wanted to show the entered text as a hyperlink. How can I make this possible?

Upvotes: 2

Views: 864

Answers (2)

Gerben Jacobs
Gerben Jacobs

Reputation: 4583

You could change the textarea element to a a-element with Javascript

Upvotes: 0

Elad Lachmi
Elad Lachmi

Reputation: 10581

Don't think you can. What you could do is make an onclick event for the textbox. Or you can make a custom control that inharits from TextBox and implement this.

Upvotes: 1

Related Questions