我使用jsp和servlet页面使用Query字符串发送两个值。
我需要从jsp页面中的查询字符串中只取一个值才能正常工作。
同时在servlet页面中,当我点击按钮时,我需要获取值 从查询字符串,但在这里我没有从查询字符串中获取值。
在jsp中,我在文本框值代码中使用查询字符串:
<input type="text" id="txtBatchName" name="txtBatchName" value="<%=request.getParameter("BatchId").replace("id=","")%>">
Servlet页面:
if(request.getParameter("btnUpdate")!= null){
String Batch2=request.getQueryString();
String Id1=request.getParameter("Id");
}
答案 0 :(得分:1)
尝试使用name属性。(Id特定于Java Script,不会传输到服务器端)
String Id1=request.getParameter("txtBatchName");