Blackberry 浏览器问题...XML 解析期间遇到错误:需要名称

发布于 2024-12-29 10:06:34 字数 266 浏览 1 评论 0原文

我正在使用 Asp.net 创建一个移动网站,并且在 BB 浏览器中面临 XML 相关问题 我在表单上使用中继器控件,并且绑定中继器控件的数据包含与号“&”这会导致黑莓浏览器出现问题......下面是图像的问题。

在搜索这个问题后,我发现“&符号”是问题所在,那么如何处理“&”在数据中。中继器包含供应商名称“ A & B ”,因此会导致崩溃

在此处输入图像描述

I am creating a Mobile website using Asp.net and i am facing a XML related issue in BB Browser I am using a Repeater control on my form and the data which is binding the repeater control contains ampersand "&" and it leads to an issue on BlackBerry Browser.... Below is the issue of the image.

After searching on the issue i figure out "ampersand" is the issue so how to handle "&" in data. The Repeater contains Vendor name which is " A & B " so it leads to crash

enter image description here

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

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

发布评论

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

评论(1

蓝咒 2025-01-05 10:06:34

我使用 Server.HtmlEncode 解决了这个问题,因为它在我的 VendorName 中包含特殊字符...
下面是代码...

 <asp:Label ID="LabelDescription" runat="server"
               Text='<%# System.Web.HttpUtility.HtmlEncode(Eval("Description")) %>' />

再次感谢...

I solved using Server.HtmlEncode because it contains special characters in my VendorName...
Below is the code...

 <asp:Label ID="LabelDescription" runat="server"
               Text='<%# System.Web.HttpUtility.HtmlEncode(Eval("Description")) %>' />

Thanks again...

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