在index.jsp
1.url传参数数
? ? <a? ?href= "../index1.jsp?keyword= '你好 ' "/ >
2.采用session? ?或request
<%
? ? session.setAttribute( "keyword ", "你好 ' ")
% >在index1.jsp
在index1.jsp
1.
<%
? ?? ?String? ?keyword? ?=? ?reuqest.getparamer( "keyword ");
% >
<input? ?type= "text "? ?value= <%=keyword% > >
2.
<%
? ?? ?String? ?keyword? ?=? ?session.getAttribute( "keyword ");
% >
<input? ?type= "text "? ?value= <%=keyword% > >
详细解决方案
jsp 其间传值
热度:155 发布时间:2012-11-01 11:11:33.0
相关解决方案