Re: IRC #struts on freenode

2006-09-16 Thread Rick Reumann
Don't forget about us on #funkycodemonkey on irc.darkmyst.org either. All are welcome - although weekends and evenings are often quiet. Of coruse, during the day when we are supposed to be doing our real work, we spend the most time chatting:) On 9/16/06, Wendy Smoak <[EMAIL PROTECTED]> wrote:

Re: IRC #struts on freenode

2006-09-16 Thread Wendy Smoak
On 8/26/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: If anyone is on IRC, we have a channel: #struts on chat.freenode.net . It now (well, if I'm there,) has a strutsbot, though it doesn't know much yet and isn't *nearly* as talented as fajita on #apache. Drop by and teach it a few things. :)

Re: Restrict referesh from resending the request

2006-09-16 Thread Nuwan Chandrasoma
Hi, I had the same problem. so what i did was.., i created an forward action mapping (no action code is required for this) and when the submit button is click it would call the action mapping which has the action class that that would do the real process and the success forward would call the

Restrict referesh from resending the request

2006-09-16 Thread Puneet Lakhina
Hi, I think i maybe have my basics skewed, but this is what my problem is. I have a form that on submit submits to an action which forwards to a page which shows the page displaying that the submit was successful. Now if the user presses refresh at that page the form is resubmitted and it creates

RE: set value to an html:hidden in jsp page

2006-09-16 Thread Strachan, Paul
the property is just a normal property defined in your form, and you can set a value... or via javascript: function submitForm(var) { self.document.yourform.command.value=var; self.document.yourform.submit(); } From: Heidy Gutiérrez Guzmán [mailto:[EM

RE: calling method of a bean from JSP

2006-09-16 Thread Strachan, Paul
you could move the logic into the view/jsp layer...something like: or maybe a custom tag library... From: Lixin Chu [mailto:[EMAIL PROTECTED] Sent: Sat 16/09/2006 1:25 PM To: Struts Users Mailing List Subject: Re: calling method of a bean fr