Re: document.testbean.submit is not a function

2001-05-10 Thread Bart Moberts
Hello John >From: [EMAIL PROTECTED] (John Miaso) >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: document.testbean.submit is not a function >Date: Wed, 09 May 2001 08:27:24 -0600 > >I've modified the html-select.jsp example to include the script: > > >function cbChanged() { documen

Re: how to forward page on logic:notPresent?

2001-05-09 Thread Bart Moberts
>From: "Alex Colic" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "Struts" <[EMAIL PROTECTED]> >Subject: how to forward page on logic:notPresent? >Date: Tue, 8 May 2001 16:47:12 -0400 > >Hi, > >suppose you have an object in the session. If the user access a page that >uses this object y

Re: An HTTP POST goes in the Action.perform(..) method, what about the HTTP GET?

2001-04-19 Thread Bart Moberts
>From: "Mario Laureti" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: An HTTP POST goes in the Action.perform(..) method, what about the >HTTP GET? >Date: Thu, 19 Apr 2001 10:08:57 -0400 > >Hello, > > I have 2 questions: > > 1) How can I catch when a HT

Re: How to display odd/even rows using iterator

2001-04-19 Thread Bart Moberts
hello i do it this way: <%! String[] colors = new String[2]; int i = 0; %> <% colors[0]="#EE"; colors[1]="#CECECE"; i = 0;%> <% i = 1 - i; %> > ... grtz >From: "Zeltser, Mark" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: How to display odd/even