I am not sure if this wld be possible - but u have ActiveEdit / MegaEdit - which may display links inside a textarea in IE.
is that what ur looking for ?
Main Topics
Browse All TopicsI have a page that involves a textarea entry.
For example a user types in the textarea field with this one:
---> This is just a sample reply. For reference you may go to this site : http://www.experts-exchang
---> Blah...blah...blah... and so on...
The term : http://www.experts-exchang
Note : In displaying the data from my textarea field, I am using this code :
#Replace(HTMLEditFormat(to
topic_content is the database fieldname in which the data being stored here is from the textarea entry.
I want that all link formats which are supplied in the textarea a clickable one.
Any help would be greatly appreciated!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
there was just a question about this a while back. i didn't find it, but its like:
you have your variable: form.textarea1
then:
<cfset begin=find("http://",form.
<cfloop condition="begin is not 0">
<cfset end=find(" ",form.textarea1,begin)>
<cfset ahref=mid(form.textarea1,b
<cfset form.textarea1=insert("</a
<cfset form.textarea1=insert("<a href='#ahref#'>",form.text
<cfset begin=find("http://",form.
</cfloop>
Never fear, I found your answer here!
http://www.experts-exchang
OK, so taht was bad. Anyhow, this is the question that Substand was probably thinking of?
These were the final expressions I believe:
comment = ReReplaceNoCase(comment,"(
comment = ReReplaceNoCase(comment,"(
Let me know if you have any trouble implementing them. There are examples in the above link that you should be able to test it out with.
As of now, I am using your code TallerMike.
But, there's a problem.
Since, I am concern also to display those html and cfml tags then there's a problem.
Once a link is found at a new line, it gives me a wrong link address.
I am using this code:
#Replace(comment,chr(10),"
meaning once a new line is found, it will replace it with a carriage return.
But when the link is found just in a new line, the link displayed in the status bar is this one:
http://<br>www.google.com
This is from the example comment which is :
Browse to this site.
www.google.com
How can I correct this one?
Is there something wrong with my code?
I still get bugs with my final solution but much better than the code that you have given TallerMike. I get the idea from it.
Anyway, a many thanks for that one...
Would you try it to run and observe what's really the bugs that I am referring to?
Using your code here are some of the bugs that I have encountered:
1. once a www..... and so on is found, the address goes like this http://%20www... meaning page is not found / invalid.
2. once a link is found at the last line, the first word of the next line will be captured as link.
But somehow, I am not fully satisfied with the solution I have this time. I may not have to post it since, the problem still not being solved perfectly.
Regards to Everybody !
Entrance2002 :)
Business Accounts
Answer for Membership
by: anandkpPosted on 2003-05-22 at 03:31:41ID: 8563332
that means u want to have clickable links inside the textarea ???