Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
HTML
<textarea>
this is used to intimate you that you have a request pending.
to approve this click the following link
<a href=<a rel="nofollow" href="http://localhost:8080/travel/t_form.jsp" target="_blank">http://localhost:8080/travel/t_form.jsp</a></textarea>
Posted
Updated 29-Jan-21 8:37am
v3
Comments
Sergey Alexandrovich Kryukov 4-Mar-12 23:58pm    
I changed to tag to a more relevant one. Please edit the formatting the way HTML would look exactly like your source. After I click "Improve question", I can see that all your code is inside the element textarea, but the closing tag of it is invisible. If you know HTML you should know HTML characters entities to show HTML code.
--SA

Please see my comment: in your HTML, all code is insider your textarea element. This is wrong. This elements is designed to allow the user to enter plain text. All HTML code inside its text is not rendered as HTML and is not supposed to be. Not only it is impossible, it would not make any sense. If you need a hyperlink (rendered via anchor element), place it outside of textarea element.

—SA
 
Share this answer
 
You cannot do that. Because you can only put text inside the textarea and active HTML tags are not allowed. If you want a simple text with active links, then use a div as your text area.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900