Re: passing parameters to another JSP page

2003-06-20 Thread Alan Tang
Friday, June 20, 2003 9:56 PM Subject: RE: passing parameters to another JSP page There is a little typo in your which screws up the rest of your jsp. For your include-action you use an empty-element tag (ending with "/>") that by definiton contains no child elements. Therefore

RE: passing parameters to another JSP page

2003-06-20 Thread Stefan Radzom
There is a little typo in your which screws up the rest of your jsp. For your include-action you use an empty-element tag (ending with "/>") that by definiton contains no child elements. Therefore, the params do not belong to the include and are never passed on to the included jsp. Use the correc

RE: passing parameters to another JSP page

2003-06-20 Thread Mike Curwen
Don't make the opening jsp:include tag a singleton. You have : it should be: > -Original Message- > From: Alan Tang [mailto:[EMAIL PROTECTED] > Sent: Friday, June 20, 2003 5:03 AM > To: [EMAIL PROTECTED] > Subject: passing parameters to another JSP page > > > Hi, > Any help would