outputting html as html

2004-05-18 Thread Barnett, Brian W.
How can I output a string of html as html? If I have a property called myBean.html set to, table border='1'trtdHi there. This is an html bean writing test./td/tr/table how can I output it in the jsp page as html? (i.e., as a table with a border of 1, not a string with angle bracket

RE: outputting html as html

2004-05-18 Thread Morrow, Steve D.
If you're using the c:out tag, set the escapeXml attribute to false. Example: c:out value=${myBean.html} escapeXml=false / -Original Message- From: Barnett, Brian W. [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 12:35 PM To: '[EMAIL PROTECTED]' Subject: outputting html as

RE: outputting html as html

2004-05-18 Thread Barnett, Brian W.
Thanks, that worked. -Original Message- From: Morrow, Steve D. [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 11:42 AM To: 'Tag Libraries Users List' Subject: RE: outputting html as html If you're using the c:out tag, set the escapeXml attribute to false. Example: c:out

sending two different mails

2004-05-18 Thread Arora, Avinash
Hi, Can we send two different mails using the mt:mail tag of Mailer tag library, at a given time. If yes can any body please how to achieve this. Here is what I am trying to do-- (As u can see I am using there are two mt:mail, but only first one is executed). body mt:mail

[ANN] String Taglib 1.1.0 has been released

2004-05-18 Thread Felipe Leme
The Jakarta Taglibs Team is proud to announce the release of version 1.1.0 of its String taglib. This a new minor release, where new tags were added and some bugs fixed. Downloads: Binary: http://jakarta.apache.org/site/binindex.cgi Source: http://jakarta.apache.org/site/sourceindex.cgi

[JSTL] How do I enter a null value with sql:param?

2004-05-18 Thread Derek Mahar
How do I enter a null value into a table column with sql:param? The JSTL 1.1 specification states for sql:param that, If value is null, the parameter is set to the SQL value NULL. However, no matter what value I pass to sql:param, I'm unable to set a null column: Case 1: Set value to undefined

Re: [JSTL] How do I enter a null value with sql:param?

2004-05-18 Thread Kris Schneider
sql:param value=${null}/ Derek Mahar wrote: How do I enter a null value into a table column with sql:param? The JSTL 1.1 specification states for sql:param that, If value is null, the parameter is set to the SQL value NULL. However, no matter what value I pass to sql:param, I'm unable to set a