如何防止对 XML 文字 (VB.NET) 中的嵌入表达式进行 HTML 编码?
使用以下代码:
Dim x As System.Xml.Linq.XElement = _
<div>
<%= message.ToString() %>
</div>
Dim m = x.ToString()
...如果消息是 HTML,则 < 和> 字符被转换为 <
和 &rt;
。
我怎样才能强制它跳过这个编码?
With the following code:
Dim x As System.Xml.Linq.XElement = _
<div>
<%= message.ToString() %>
</div>
Dim m = x.ToString()
...if message is HTML, then the < and > characters get converted to <
and &rt;
.
How can I force it to skip this encoding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的
message
变量的类型是什么? 如果message
是XElement
,则只需省略.ToString
调用,如下所示:如果
message
是其他内容输入(如StringBuilder
),然后执行以下操作:What is the type of your
message
variable? Ifmessage
is anXElement
, then just leave off the.ToString
call like this:If
message
is some other type (likeStringBuilder
), then do this:您需要将 HTML 片段作为 XML 文档打开,并将文档节点附加到您正在创建的 Div 节点。
如果要将 XML(或 HTML)添加到现有 XML 文档中,则必须将其添加为 XML 而不是文本(因为会被编码)。
You need to open the HTML snippit as an XML document and append the document node to the Div node you are creating.
If you want to add XML (or HTML) to an existing XML document then you have to add it as XML and not as text (cause that gets encoded).