2014-04-04 56 views

回答

0

是的,這是可能的。

讓你有一個以前的頁面的index.jsp(或者如果沒有處理完成,那麼就可以的index.html)

<html> 
<head></head> 
<body> 
<form action="nextPage.jsp" method="POST"> 
Name <input type="text" name="user_name"> 
<input type="submit" name="submit_form"> 
</form> 
</body> 
</html> 

,並在JSP側即NextPage.jsp上 ,使用下面的代碼:

String str=request.getParameter("user_name"); 
out.println("Hello "+ str); 

這只是演示,您可以根據您的要求使用你的代碼的N個邏輯。

相關問題