how to pass two parameters in one url?

the tutorial teaches me to use

/faces/Details.jsp?personId=#{currentRow.value['PERSON.PERSONID']}

to pass one parameter.

How can i pass two parameters in one url?

/faces/Details.jsp?personId=#{currentRow.value['PERSON.PERSONID']}&personNa me=#{currentRow.value['PERSON.PERSONNAME']}

is not right.

[344 byte] By [suange] at [2007-11-26 9:37:24]
# 1
The '&' character needs to be escaped, lest it be interpreted by the application server as a separator character in the HTTP query string. Instead of '&', try '%26'.// Gregory
gjmurphy at 2007-7-7 0:30:44 > top of Java-index,Development Tools,Java Tools...