我可以将 LINQ 结果嵌入到 CDATA 中吗?
我可以将从 LINQ 查询返回的值(在下一个示例 c.day 中)与 CDATA 合并,例如...
Dim Result = <items>
<%= From c In db.News Select _
<item>
<day><![CDATA[<font size="30" color="#7CBEBD"><%= c.day %></font>]]></day>
</item> %>
</items>
Can i merge the values returned from a LINQ query (in the next example c.day) with CDATA like...
Dim Result = <items>
<%= From c In db.News Select _
<item>
<day><![CDATA[<font size="30" color="#7CBEBD"><%= c.day %></font>]]></day>
</item> %>
</items>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您不能在 VB.NET 中使用 CDATA 节文字和其中的嵌入表达式,但您当然可以使用
new XCData()
构造一个 CDATA 节节点,如下例所示:
I don't think you can use CDATA section literals and embedded expressions inside them with VB.NET but you can certainly construct a CDATA section node with
new XCData()
as in the following example:That serializes as