我在table
页面中创建了jsp
。它正确打印出数据库中的数据,但是当我执行下面的代码时,它在数据库中返回null。
我想从music.jsp
获取数据并在reservation.jsp
中设置为数据库。
我怎么能这样做?
music.jsp
<table border="1" width="30%" height="30%">
<tr><th><font color='#D18603'>ActivityID</font></th>
<th><font color='#D18603'>Type</font></th>
<th><font color='#D18603'>Description</font></th>
<th><font color='#D18603'>City</font></th>
<th><font color='#D18603'>Location</font></th>
<th><font color='#D18603'>Date</font></th>
<th><font color='#D18603'>Price</font></th>
<th><font color='#D18603'>Buy</font></th>
</tr>
</table>
reservation.jsp
String ActivityID = request.getParameter("ActivityID");
String Buy = request.getParameter("Buy");