Re: How remove a request parameter

2005-08-16 Thread Rolf . Niepraschk
Martin wrote: > As Muz pointed out, request parameters are immutable, since they are a > representation of the request as sent by the client. If you need to > modify them, you'll need to first copy them to some other location, > and then base your logic on the copy instead. Thank you for the exp

Re: html markup in XML files

2005-08-16 Thread Dylan MacDonald
That's perfect. Just what I needed. Thanks! - Dylan --- : SammyRulez: : Tue Aug 16 10: 39: [EMAIL PROTECTED], [EMAIL PROTECTED];, "::SammyRulez::" <[EMAIL PROTECTED]> wrote: > you should wrap your "desc" tag content in CDATA (see > http://www.w3schools.com/xml/xml_cdata.asp) > > your xml

Re: html markup in XML files

2005-08-16 Thread ::SammyRulez::
you should wrap your "desc" tag content in CDATA (see http://www.w3schools.com/xml/xml_cdata.asp) your xml should look like this.. img/share_your_music.jpg Share your music index.jsp?pid=4 -- ::SammyRulez:: http://sammyprojectz.blogspot.com 2005/8/16, Dylan Mac

html markup in XML files

2005-08-16 Thread Dylan MacDonald
Hi - So I am using the JSTL xml tags for a website I'm working on and am I running into an issue. Ideally I'd like to store all of the content in XML files and populate the corresponding JSP files using the XML tags. However, the text contains some markup in it (e.g. bold, italics, etc) which ar

Re: How remove a request parameter

2005-08-16 Thread Martin Cooper
On 8/16/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I read some parameters from html form requests using the variable > > ${param['propertyName']} > > After the reading a need to remove the entry 'propertyName' or the value of > ${param['propertyName']} should be changed to the empty

Re: How remove a request parameter

2005-08-16 Thread Murray Steele
Aren't they read-only? I could be wrong, but the servlet spec only provides fetch mechanics for Parameters in ServletRequest, so I think you can't change them. If you did want to have the ability to set / remove the values of parameters you could try wrapping the servlet request in some wrapp

Re: How remove a request parameter

2005-08-16 Thread Mike Deegan
- Original Message - From: <[EMAIL PROTECTED]> To: "Tag Libraries Users List" Sent: Tuesday, August 16, 2005 1:51 AM Subject: How remove a request parameter I read some parameters from html form requests using the variable ${param['propertyName']} After the reading a need to re

How remove a request parameter

2005-08-16 Thread Rolf . Niepraschk
I read some parameters from html form requests using the variable ${param['propertyName']} After the reading a need to remove the entry 'propertyName' or the value of ${param['propertyName']} should be changed to the empty string. Something like doesn't work. What can I do? Thanks in adva