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 源代码..
我的代码是
<div id="esdcatalogXml" runat="server"></div>
而 C# 是:
string xmlSource = HttpUtility.HtmlDecode(ds.Tables[0].Rows[0]["Value"].ToString()) ; esdcatalogXml.InnerText = xmlSource;
我想在我的网页中逐行显示..但是将所有行放在一行中。
请帮忙