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.
我一直在寻找一种在文本框中显示格式化 xml 的方法,到目前为止我发现的所有内容都指向从文件中读取 xml 并对其进行格式化,但是我想显示保存在数据库字段中的 xml。
这个想法是用户将记录返回到网格视图,网格视图将显示除 xml 消息之外的所有内容,因为它的大小。然后他们可以选择记录并在弹出表单上显示 xml。
我已将 xml 传递给弹出表单,只是不知道如何处理它。欢迎任何想法。
通过使用绕过它
xmlOut = System.Xml.Linq.XDocument.Parse(txtXml).ToString();