Re: pass parameters to action

2007-09-07 Thread Martin Gainty
immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: "Vinny" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Friday, September 07, 2007 5:56 PM Subject: Re: pass parameters to

Re: pass parameters to action

2007-09-07 Thread Dave Newton
--- Vinny <[EMAIL PROTECTED]> wrote: > I do. Not reddit; no upmods for short, content-free posts. Oh, wait. Curses. d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: pass parameters to action

2007-09-07 Thread Vinny
I do. On 9/7/07, Christopher Schultz <[EMAIL PROTECTED]> wrote: > > Who really cares whether the URL is long or not? > > - -chris > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.7 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFG4Zmw9CaO5/Lv0PARAr4EAKCFB

Re: pass parameters to action

2007-09-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rod, Rod Bollinger wrote: > There is nothing wrong with Javascript in general - when used judiciously. > > The problem with Javascript (in this particular situation) is that if > Javascript is disabled or unavailable for any reason, the user will no

Re: pass parameters to action

2007-09-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, Chris Pratt wrote: > On 9/7/07, Dave Newton <[EMAIL PROTECTED]> wrote: >> --- Christopher Schultz wrote: >>> Who really cares whether the URL is long or not? >> >> People who have a URL longer than some browsers will >> accept? > > Also, it is

Re: pass parameters to action

2007-09-07 Thread Anna Simbirtsev
14:42 > To: Struts Users Mailing List > Subject: RE: pass parameters to action > > > > > > > Submit the form > > > > Oh, the humanity! > > > > Seriously, I hate seeing this kind of code. First of all, it > > requires javascript. > >

Re: pass parameters to action

2007-09-07 Thread Chris Pratt
On 9/7/07, Rod Bollinger <[EMAIL PROTECTED]> wrote: > The problem with Javascript (in this particular situation) is that if > Javascript is disabled or unavailable for any reason, the user will not be > able to submit the request - this is a major accessibility no-no. Rod: That is a valid point, s

RE: pass parameters to action

2007-09-07 Thread Rod Bollinger
Users Mailing List Subject: RE: pass parameters to action > > > > Submit the form > > Oh, the humanity! > > Seriously, I hate seeing this kind of code. First of all, it > requires javascript. What's wrong with javascript? > Second, it merely converts a GET

Re: pass parameters to action

2007-09-07 Thread Leonidas Papadakis
Sometimes the get method is necessary though. If you set your parameters to hidden fields, then the url will be like myjob.action. If the visitor would copy and paste this url and send it via skype to a friend, then they will not get the same result This might be bad i.e. when viewing a pr

Re: pass parameters to action

2007-09-07 Thread Chris Pratt
On 9/7/07, Dave Newton <[EMAIL PROTECTED]> wrote: > --- Christopher Schultz wrote: > > Who really cares whether the URL is long or not? > > People who have a URL longer than some browsers will > accept? > Also, it is sometimes considered a security risk to have certain information displayed in the

RE: pass parameters to action

2007-09-07 Thread Slattery, Tim - BLS
> > > > Submit the form > > Oh, the humanity! > > Seriously, I hate seeing this kind of code. First of all, it > requires javascript. What's wrong with javascript? > Second, it merely converts a GET request into a POST request. > Who really cares whether the URL is long or not? OP did. That

Re: pass parameters to action

2007-09-07 Thread Dave Newton
--- Christopher Schultz wrote: > Who really cares whether the URL is long or not? People who have a URL longer than some browsers will accept? d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: pass parameters to action

2007-09-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris, Chris Pratt wrote: > Create a form with only hidden parameters (you could use the > and tags instead): > > > > > > Then in your link use: > > Submit the form Oh, the humanity! Seriously, I hate seeing this kind of code. First of all

Re: pass parameters to action

2007-09-07 Thread Chris Pratt
On 9/7/07, Anna Simbirtsev <[EMAIL PROTECTED]> wrote: > How do I do it? > Create a form with only hidden parameters (you could use the and tags instead): Then in your link use: Submit the form (*Chris*) - To unsubscri

Re: pass parameters to action

2007-09-07 Thread Anna Simbirtsev
How do I do it? On 9/7/07, Rick Reumann <[EMAIL PROTECTED]> wrote: > > On 9/7/07, Anna Simbirtsev <[EMAIL PROTECTED]> wrote: > > > > Hello > > I have a link > paramName="map">Name and when a user clicks on it, it calls > > action myAction and passes parameters using HashMap. Those parameters > a

Re: pass parameters to action

2007-09-07 Thread Rick Reumann
On 9/7/07, Anna Simbirtsev <[EMAIL PROTECTED]> wrote: > > Hello > I have a link paramName="map">Name and when a user clicks on it, it calls > action myAction and passes parameters using HashMap. Those parameters are > visible in the URL. Is there any way to pass parameters to the action > other >

Re: pass parameters to action

2007-09-07 Thread wild_oscar
rameters are > visible in the URL. Is there any way to pass parameters to the action > other > than through URL? > > Thank you > > -- View this message in context: http://www.nabble.com/pass-parameters-to-action-tf4402086.html#a12558801 Sent from the St

RE: pass parameters to action

2007-09-07 Thread Slattery, Tim - BLS
> I have a link paramName="map">Name and when a user clicks on > it, it calls action myAction and passes parameters using > HashMap. Those parameters are visible in the URL. Is there > any way to pass parameters to the action other than through URL? No, and it's not Strut's fault. If you wan

pass parameters to action

2007-09-07 Thread Anna Simbirtsev
Hello I have a link Name and when a user clicks on it, it calls action myAction and passes parameters using HashMap. Those parameters are visible in the URL. Is there any way to pass parameters to the action other than through URL? Thank you