jsp 中的超链接使用 DB2 表中的数据
我需要在我的页面中显示一个电子邮件地址 - [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将属性 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.