Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
Is there anyway I can hide sending all the URL parameters (in the browser address) from once page to other whenever I do submit/click on html link? any help would be appreciated. Tnx in advance, -Ramadoss - To unsubscribe,

RE: Hiding URL Parameters

2004-03-04 Thread Qureshi, Affan
: Ramadoss Chinnakuzhandai [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 1:32 PM To: [EMAIL PROTECTED] Subject: Hiding URL Parameters Is there anyway I can hide sending all the URL parameters (in the browser address) from once page to other whenever I do submit/click on html link? any

RE: Hiding URL Parameters

2004-03-04 Thread Slattery, Tim - BLS
Is there anyway I can hide sending all the URL parameters (in the browser address) from once page to other whenever I do submit/click on html link? If you set method=post in your form element (which Strut's html:form... tag does as default) the arguments will not appear as part of the URL.

RE: Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
But if you're using an html hyperlink, or the Struts html:link... tag, you cannot pass arguments without having them appear in the URL. Im using html:link in most cases.and there is the need of hiding URL parameters despite I'm using method=post in my html:form any clue?? -Ramadoss

RE: Hiding URL Parameters

2004-03-04 Thread Wendy Smoak
Im using html:link in most cases.and there is the need of hiding URL parameters despite I'm using method=post in my html:form any clue?? A bit of onclick JavaScript to set the form fields to the values you need, and then submit the form with a POST. Not to hide the attributes, but I do

RE: Hiding URL Parameters

2004-03-04 Thread Michael McGrady
in the URL. Im using html:link in most cases.and there is the need of hiding URL parameters despite I'm using method=post in my html:form any clue?? I already said it. A link is a GET request. With a GET, the parameters are part of the request. There's no way around that. -- Tim Slattery

RE: Hiding URL Parameters

2004-03-04 Thread Ramadoss Chinnakuzhandai
tnx all for your helpsure I would try that way. -Ramadoss -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Thu 3/4/2004 5:41 PM To: Struts Users Mailing List Cc: Subject: RE: Hiding URL Parameters