RE: The best place for output formats

2005-04-28 Thread Chad Rosen
I'd suggest putting the format of your dates in your application properities files like so.. store.date.simple=MM-dd- store.date.detailed=MM-dd- h:mm:ss a And then referencing them from your jsp like this.. Note: We have different bundles so that's why bundle="storeResources".. This way

html:image and IE

2005-05-09 Thread Chad Rosen
Hi all.. I have a shopping cart page with two submit buttons that we've changed to html:image tags. They look like this.. and In my action I'm checking to see if the user has pressed the updateCart image. If they did I return them back to the cart. if(request.getParameter("updateCart") != n

RE: html:image and IE

2005-05-09 Thread Chad Rosen
Ok I'm going to reply to myself :) Adding this check solved the problem for IE.. request.getParameter("updateCart.x") != null However, I'd prefer to use the form. Is this the preferred way? Will this catch both the IE and Firefox submissions? Or should I do this? From: