0

我正在使用 ASP.Net 的内置类为网站创建 XML 提要。这是我的代码,

SyndicationFeed myFeed = new SyndicationFeed();
myFeed.Title = TextSyndicationContent.CreatePlaintextContent
("XYZ  - In the first line <br/> in the second line");

渲染时,它按原样显示 -

XYZ  - In the first line <br/> in the second line

而我想要它

XYZ  - In the first line 
in the second line

我看到该行为仅适用于 myFeed.Title,而在 myFeed.Description 中,我可以使用任何 HTML 标记。

有什么方法可以让 HTML 标签与 Titles 一起使用?

4

1 回答 1

0

请改用SyndicationContent.CreateHtmlContent 方法。SyndicationContent.CreatePlaintextContent 总是对文本进行转义以使其按字面呈现。

于 2012-07-30T16:00:54.230 回答