如何将带有此 href 代码的 jsp 中的两个值发送到另一个 jsp?
How to send two values in a jsp with this href code to another jsp?
我有一个名为 "first-jsp" 的 jsp,其中包含以下代码:
<a href="./second-jsp.jsp?id=<% out.print(id); %>"><%out.print(id);%></a>
如你所见,首先-jsp "sends" id 变量到另一个jsp 页面,称为"second-jsp"。
从 second-jsp 我可以简单地使用以下方法检索它的值:
<% String id = request.getParameter("id");%>
我想将另一个变量的值发送到"second-jsp"(连同id)。
假设我想发送一个名为 "name" 的字符串变量的值。
上面的代码应该如何修改才能实现?
我应该能够像检索 id 一样检索名称,使用
<% String name= request.getParameter("name");%>
因此,我可以在 second-jsp.
中同时使用 id 和 name
谢谢!
可以传递两个参数
<a href="./second-jsp.jsp?id=<% out.print(id); %>&name=<% out.print(name); %>"><%out.print(id);%></a>
我有一个名为 "first-jsp" 的 jsp,其中包含以下代码:
<a href="./second-jsp.jsp?id=<% out.print(id); %>"><%out.print(id);%></a>
如你所见,首先-jsp "sends" id 变量到另一个jsp 页面,称为"second-jsp"。
从 second-jsp 我可以简单地使用以下方法检索它的值:
<% String id = request.getParameter("id");%>
我想将另一个变量的值发送到"second-jsp"(连同id)。
假设我想发送一个名为 "name" 的字符串变量的值。
上面的代码应该如何修改才能实现?
我应该能够像检索 id 一样检索名称,使用
<% String name= request.getParameter("name");%>
因此,我可以在 second-jsp.
中同时使用 id 和 name谢谢!
可以传递两个参数
<a href="./second-jsp.jsp?id=<% out.print(id); %>&name=<% out.print(name); %>"><%out.print(id);%></a>