2012-04-12 2 views

답변

2

변수가 매개 변수에서 오는 경우

<a href="http://www.sample.com/sample.jsp?name=${param.nameVariable}">Visit W3fools.com</a> 

그리고 변수가 일반 JSP 변수는 다음의 경우 ${nameVariable}

<a href="http://www.sample.com/sample.jsp?name=${nameVariable}">Visit W3fools.com</a> 
${param.nameVariable}
관련 문제