将数据从一页传递到另一页

发布于 2024-10-07 05:21:14 字数 272 浏览 1 评论 0原文

我有一个由许多锚标记组成的页面,当单击每个链接时,必须将关联的数据发送到目标页面并显示在目标页面中。这是代码的快照

<a href="target.html?Some%data">click1</a>
<a href="target.html?Some%other%data">click2</a>

等等...当我单击 clik1 时,我应该能够显示一些数据,当我单击 click2 时,我应该能够显示一些其他数据

I have a page consisting of many anchor tags and when each link is clicked an associated data has to be sent to the target page and is to be displayed in the target page. Here is the snapshot of the code

<a href="target.html?Some%data">click1</a>
<a href="target.html?Some%other%data">click2</a>

and so on...i should be able to display Some data when i click on clik1 and Some other data when i click on click2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-10-14 05:21:14

实际上我有两个jsp页面...source.jsp和target.jsp

将它们作为 GET 请求参数传递到 source.jsp 中的查询字符串

<a href="target.jsp?data=some%20data">click1</a>
<a href="target.jsp?data=some%20other%20data">click2</a>

(请注意,空格应为 URL 编码%20,而不是 %)

并使用 EL ${param}target.jsp 中访问它们:

<p>The parameter with name "data" has the value ${param.data}</p>

防止 XSS 攻击,最好使用JSTL 的 c:out 重新显示用户控制的输入:

<p>The parameter with name "data" has the value <c:out value="${param.data}" /></p>

另请参阅:

actual i have two jsp pages...source.jsp and target.jsp

Pass them as GET request parameters in a query string in source.jsp:

<a href="target.jsp?data=some%20data">click1</a>
<a href="target.jsp?data=some%20other%20data">click2</a>

(note that a space is to be URL-encoded as %20, not as %)

And use EL ${param} to access them in the target.jsp:

<p>The parameter with name "data" has the value ${param.data}</p>

To prevent XSS attacks, preferably use JSTL's c:out to redisplay user-controlled input:

<p>The parameter with name "data" has the value <c:out value="${param.data}" /></p>

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文