如何在 HTML 中安全地显示用户输入?

发布于 2024-11-24 04:46:55 字数 241 浏览 2 评论 0原文

假设我的 ASP.net 网页上有一个文本框,用户可以在其中输入一些文本。

在另一页上,我有以下内容:

<%=userText%>

,其中 userText 指用户在上一页输入的文本。

如果文本中包含特殊字符,我需要做什么才能正确显示?此外,用户可以输入将显示给其他用户的文本,因此必须防止滥用(例如注入

Suppose I have a textbox on my ASP.net web page where a user enters some text.

On another page, I have the following: <p><%=userText%></p>, where userText refers to the text that the user entered on the previous page.

What do I need to do to make the text display properly if it contains special characters? Also, users can enter text that will be displayed to other users, so it is imperative that I prevent abuse (such as injecting <script> tags.

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

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

发布评论

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

评论(1

私藏温柔 2024-12-01 04:46:55

您应对数据进行 HTML 编码,请参阅此处

String TestString = "This is a <Test String>.";
String EncodedString = Server.HtmlEncode(TestString);

You should HTML encode the data, see here.

String TestString = "This is a <Test String>.";
String EncodedString = Server.HtmlEncode(TestString);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文