jsp更新请求恰好被链接调用
<tr class="bg-row1">
<td class="td-highlighted-2">
<div align="left"><a href="<%=contextPath%>/jsp/admin/UpdateProject.jsp"><%=searchList1.getProjid()%></a></div>
</td>
<td class="td-highlighted-2">
<div align="left"><%=searchList1.getProjname()%></div>
</td>
</tr>
这里jsp更新请求恰好是通过链接调用的
在 updateproject.jsp 中,我如何在文本框中引用 projid 和 projname 值
<tr class="bg-row1">
<td class="td-highlighted-2">
<div align="left"><a href="<%=contextPath%>/jsp/admin/UpdateProject.jsp"><%=searchList1.getProjid()%></a></div>
</td>
<td class="td-highlighted-2">
<div align="left"><%=searchList1.getProjname()%></div>
</td>
</tr>
here jsp update request happens to be invoked by a link
in updateproject.jsp how can i refer projid and projname value in a text box
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这种类型的场景,
POST
更适合,即使您想坚持使用
GET
,您也可以使用 javascript 并使用window.open()
函数满足您的目的,并构建 URL 动态读取领域For this type of scenario
POST
is better suited,Even if you want to stuck with
GET
, you can use javascript and usewindow.open()
function for your purpose , and build URL dynamically reading fields