I have a question on passing the value in URL parameter, i have two example
links provided below, one shows the dynamic images of each unique product (
[url]www.kumingwei.com:8080/page1.jsp[/url] ) , the other links shows the additional
image of each unique product ( [url]www.kumingwei.com:8080/page1.jsp[/url] ).

I will trying to pass the product_id from page1.jsp to page2.jsp so that
page2.jsp will only display the additional images of the same product.

For page1.jsp, i have put everything in a form, but when I tried to pass the
parameter by adding
?code=<%=pix('product_id')%> {where pix is name of recordset, and product_id
is one of the field in the recordset pix}
it will show errors shown below .

An error occurred at line: 229 in the jsp file: /page1.jsp
Generated servlet error:
C:\tomcat\work\Catalina\localhost\lure\org\apache\ jsp\page1_jsp.java:314:
unclosed character literal
out.print(pix('product_id'));
^


An error occurred at line: 229 in the jsp file: /page1.jsp
Generated servlet error:
C:\tomcat\work\Catalina\localhost\lure\org\apache\ jsp\page1_jsp.java:314:
unclosed character literal
out.print(pix('product_id'));
^


An error occurred at line: 229 in the jsp file: /page1.jsp
Generated servlet error:
C:\tomcat\work\Catalina\localhost\lure\org\apache\ jsp\page1_jsp.java:314: ')'
expected
out.print(pix('product_id'));
^
3 errors


Please show me how i can fix the problem, thank you.

Ming