Blackberry 浏览器问题...XML 解析期间遇到错误:需要名称
我正在使用 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Server.HtmlEncode 解决了这个问题,因为它在我的 VendorName 中包含特殊字符...
下面是代码...
再次感谢...
I solved using Server.HtmlEncode because it contains special characters in my VendorName...
Below is the code...
Thanks again...