0

I have a web.config for my website. I just made a web service which likes to overwrite the previous one. From what I can understand I need an xml transform here. I have read several sites and I am confused as how to complete this. One reference. Would love some insight, thanks in advance.

4

1 回答 1

0

如果您想在 web.config 中添加或更改某些内容,则不需要任何 XSL(T),因为您的输出格式仍然是 XML。
转换 (XSLT) 主要用于以不同格式呈现 XML 数据。
您需要的是基本的 XML 编辑功能。解析为 DOM,添加/更改节点,保存。

于 2012-08-10T14:43:58.447 回答