开发者

jsp update request happens to be invoked by a link

开发者 https://www.devze.com 2023-02-16 11:40 出处:网络
<tr class=\"bg-row1\"> <td class=\"td-highlighted-2\"> <div align=\"left\"><a href=\"<%=contextPath%>/jsp/admin/UpdateProject.jsp\"><%=searchList1.getProjid()%><
<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-highlight开发者_如何转开发ed-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


For this type of scenario POST is better suited,

Even if you want to stuck with GET , you can use javascript and use window.open() function for your purpose , and build URL dynamically reading fields

0

精彩评论

暂无评论...
验证码 换一张
取 消