RE: Hello, and need help

2002-01-29 Thread Brady Moritz
This jstl looks a bit interesting, was not really aware of it. Will this do away with the Jakarta project or will they remain parallel projects? What Ive been considering developing is a copy of the tagset used in .NET for asp.net. It has decent functionality, and should be reproducible in jsp.

RE: Hello, and need help

2002-01-29 Thread Brady Moritz
Very cool, ill give it a try. Thanks! Brady Moritz -Original Message- From: Mader, Steve [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 11:30 AM To: 'Tag Libraries Users List' Subject: RE: Hello, and need help Change the section of dbtags.tld for the setColumn tag to hav

Re: Newlines in attributes

2002-01-29 Thread bayard
Of course, there is: Which seems a bit bad. Bay On Tue, 29 Jan 2002 [EMAIL PROTECTED] wrote: > > In my example for the string-taglib, I stupidly gave an example of: > > > > without testing. Where db:get is a hypothetical tag creating data. > The example doesn't work because the \n in the t

Newlines in attributes

2002-01-29 Thread bayard
In my example for the string-taglib, I stupidly gave an example of: without testing. Where db:get is a hypothetical tag creating data. The example doesn't work because the \n in the tag gets turned into a normal 'n' before it hits the Tag object. Is there a way to solve this that I am missin

NullPointerException Error

2002-01-29 Thread Zvolensky, Thomas J {PDBI~Nutley}
Hi, I'm a JSP newbie and am having trouble using the DBTags library. I have a simple page which is intended to open an MS Access database and display three columns of information from one table. I'm getting a NullPointerException when the page compiles: java.lang.NullPointerException

Re: Accessing session scoped variables from exppression languageinthe standard taglib: Howto?

2002-01-29 Thread Wolfgang Röckelein
Hi, Shawn Bayern wrote: > > BTW: Are you sure that the core-rt version of "if" works? I never > > succeeded in getting the body evaluated, even with test="1==1"... > > It works for me: > > > 1 does indeed equal 1, interestingly enough > Aha, this is how it is supposed to work. I trie

RE: Hello, and need help

2002-01-29 Thread Mader, Steve
Change the section of dbtags.tld for the setColumn tag to have the value "yes" in the tag, and restart your server. setColumn org.apache.taglibs.dbtags.preparedstatement.SetColumnTag JSP position yes yes

RE: Hello, and need help

2002-01-29 Thread Brady Moritz
What im actually trying to accomplish is two things: - create a dynamic prepared statement each time so I can add where clauses to it. - use of the stmt instead of a normal query because I don't want to mess with figuring out if the where clause item needs to be quoted or not etc. val is a vec

Re: Accessing session scoped variables from exppression languageinthe standard taglib: Howto?

2002-01-29 Thread Shawn Bayern
On Tue, 29 Jan 2002, Wolfgang Röckelein wrote: > BTW: Where should we provide input to the EL discussion? Is this > discussion public? It can be discussed informally here. More formally, the subject has now been taken up by the JSR-152 group, so I should defer to Eduardo Pelegri-Llopart and Mar

RE: Hello, and need help

2002-01-29 Thread Mader, Steve
The execute tag is meant for updates, inserts and deletes. What you probably want to use is the resultSet tag. <% for( int i = 0; i < val.size(); i++ )// What is val??? { %> <% } %> I think you're trying to print all the values that are

Question regarding c:if

2002-01-29 Thread Wolfgang Röckelein
Hi, when using c:if with EL=ECMAscript, what are the semantics with the comparison operator "=="", e.g. with test="$test == 'test'", i.e. it seems that if the variable test is not a string, the test always fails (when I set the variable with on column generated with "select 'test'", the above te

Re: Accessing session scoped variables from exppression language inthe standard taglib: Howto?

2002-01-29 Thread Wolfgang Röckelein
Hi, thank you for your response. Shawn Bayern wrote: > > On Mon, 28 Jan 2002, Wolfgang Röckelein wrote: > > > how do I access session scoped variables from expression language in the > > standard taglib library? > > The answer depends on the actual expression language you use. EA3 doesn't >