如何將參數從jsp傳遞給使用不屬於表單的任何字段的表單,而不使用session.i認爲代碼可能看起來像下面的示例,但對我不起作用。 PLZ幫助我。將參數從jsp傳遞給servlet
在index.jsp中: -
<form method="Post" action="servlet">
<input type="text" name="username">
<input type="password" name="password">
<%
int z=1;
request.setAttribute("product_no", z);%>
<input type='submit' />
</form>
在servlet.java:-
int x=Integer.parseInt(request.getAttribute("product_no").toString());
,但如果我想傳遞一個參數時,形式,而不是提交使用任何輸入字段。我應該怎麼做? – Patriotic 2014-10-21 22:33:30
@ user3751576,這個問題對我沒有意義。你想問什麼?這裏真正的目標是什麼? – developerwjk 2014-10-21 22:35:24
我明白了。日Thnx。所以,要通過表單傳遞一個值,我們必須使用一個輸入字段。我想現在我是對的。 – Patriotic 2014-10-21 22:45:13