c:url clunky

2002-04-08 Thread Steve Morrison
I noticed that c:param's in a c:url are added backwards. So if I have: c:url var=my_url value=http://example.com/script.jsp; c:param name=A1/c:param c:param name=B2/c:param c:param name=C3/c:param /c:url It produces: http://example.com/script.jsp?C=3amp;B=2amp;A=1 This isn't so good

Re: c:url clunky

2002-04-08 Thread Shawn Bayern
On Mon, 8 Apr 2002, Steve Morrison wrote: I noticed that c:param's in a c:url are added backwards. So if I have: c:url var=my_url value=http://example.com/script.jsp; c:param name=A1/c:param c:param name=B2/c:param c:param name=C3/c:param /c:url It produces: