jsp 中的超链接使用 DB2 表中的数据

发布于 2024-10-17 17:16:51 字数 339 浏览 1 评论 0原文

我需要在我的页面中显示一个电子邮件地址 - [email protected]需要存储在DB2表中。另外,当用户单击 - 单击此处时,我需要证明一个链接。我应该如何将数据存储在DB2中才能正确显示?我正在从 List 中的这个 DB2 表中获取所有数据。我正在做。因为其他数据只是纯文本。它显示正确。但电子邮件 ID 和链接却没有。请帮忙。

I need to display an email address - [email protected] in my page which needs to be stored in DB2 table. Also I need to proved a link when the user click on - Click here. how should i store the data in DB2 sothat it can be displayed correctly ? I'm getting all the data from this DB2 table in List. I'm doing <logic:iterate>. since other data are just plain text. it displays correctly. But email id and tthe link doesnt. please help.

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

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

发布评论

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

评论(1

没企图 2024-10-24 17:16:51

您必须将属性 escape=false 添加到打印文本的标记中。但是,请确保在输入阶段清理该数据,否则将为 XSS 安全漏洞打开大门。

You must add the attribute escape=false to the tags that print out the text. However, make sure you sanitize that data in input phase, or you will open the door to XSS security vulnerabilities.

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