Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我必须编写一个 HTML 报告,从各种 XML 源中提取信息。我可以选择使用 XSLT 生成报告,或者只是通过将 XML 序列化为 C# 对象并使用这些对象填写 aspx 页面中的信息,将其写入 ASPX 中。
哪个替代方案在开发时间和性能方面会更好?
对我来说,很大一部分决定是 XML 源的结构是否会经常更改,或者我是否需要添加/删除 XML 源。使用 XSLT,您只需进行更改而无需重新编译您的代码。