朋友, 我想將文本字段值傳遞到下一個jsp頁面。當我試圖做下一個jsp頁面時總是顯示該變量的空值。 請告訴我,我怎麼能做到這一點.......通過點擊提交按鈕將值傳遞到下一頁
我的代碼是
<form name="lab" action="second.jsp" method="get">
<table>
<tr>
<td style="margin-left:10px">Enter Lab</td>
<td><select name="labName">
<option>--select lab---</option>
<option>Lab-01</option>
<option>Lab-02</option>
<option>Lab-03</option>
<option>Lab-04</option>
<option>Lab-05</option>
<option>Lab-06</option>
<option>Lab-07</option>
<option>Lab-08</option>
<option>Lab-09</option>
<option>Lab-10</option>
</select></td>
</tr>
<tr>
<td width=100px>Enter Location</td>
<td> <select name="location">
<option>--select location--</option>
<%
for(i=1;i<=60;i++)
{
%><option><%out.print(i);%></option><%
}
%>
</select></td>
</tr>
<tr>
<td width=100px>Enter System ID </td>
<td><input type=text name=lab name="sysId" value="Sys. Id" size=10></td>
</tr>
<tr>
<td><hr><b</td>
<td><hr></td>
</tr>
<tr>
<td align=center class="cells" width=100px><input type="submit" name=submit value=ADD hight=10px width=20px onclick="move();"></td>
<td align=center class="cells" width=10px ><input type=button name=submit value=cancel>
</td>
</tr>
</table>
</form>
和下一頁second.jsp
<%
String id=request.getParameter("sysId");
out.print(id);
%>
它給null作爲輸出。
顯示窗體標籤。或者你是否在表單標籤中給出了第二個jsp頁面的操作? – Subin
你的問題解決了嗎? –