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.

