I'm guessing that you're using the <c:out> tag to output the data. <c:out> has the 
escapeXml attribute set to "true" by default. That's what's turning all your special 
characters into their escape equivalents. Use this:

<c:out value="${your.data}" excapeXml="false" />

and that should keep that from happening.

Keith



---------- Original Message -----------
From: Martin Nad <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Sent: Thu, 29 Apr 2004 05:06:25 -0700 (PDT)
Subject: html tag in sql-database

> Hi!
> 
> I use sql-taglib for reading from database.Everything
> works fine but i have some problem with html-tag in
> database, when i print-out the contants av a record,
> the html-tags dosent work and when i look at the
> source, it stands &alt; &glt; for <,>. But i want to
> use the html-tags in my record. how can i resolve this
> problem.
> 
> Cheers
> 
>       
>               
> __________________________________
> Do you Yahoo!?
> Win a $20,000 Career Makeover at Yahoo! HotJobs  
> http://hotjobs.sweepstakes.yahoo.com/careermakeover
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
------- End of Original Message -------


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to