HI,
I am loading the below xml in dom documnet
<xivotTable>
<x:OWCVersion>11.0.0.6555</x:OWCVersion>
<xisplayScreenTips />
<x:NoAutoFit />
<x:Height>376</x:Height>
<x:Width>1278</x:Width>
<x:CubeProvider>msolap.2</x:CubeProvider>
<x:CacheDetails />
<x:ConnectionString>Provider=MSPersist.1</x:ConnectionString>
<x:CommandText> <x:Name>Microsoft Office PivotTable 11.0</x:Name>
XmlDocument objxml = new XmlDocument();
objxml.LoadXml(strabovexml)
after that I want to update the <x:CommandText> with other valuelike<x:commanText>
can anybody help me out in this.
I am loading the below xml in dom documnet
<xivotTable>
<x:OWCVersion>11.0.0.6555</x:OWCVersion>
<xisplayScreenTips />
<x:NoAutoFit />
<x:Height>376</x:Height>
<x:Width>1278</x:Width>
<x:CubeProvider>msolap.2</x:CubeProvider>
<x:CacheDetails />
<x:ConnectionString>Provider=MSPersist.1</x:ConnectionString>
<x:CommandText> <x:Name>Microsoft Office PivotTable 11.0</x:Name>
XmlDocument objxml = new XmlDocument();
objxml.LoadXml(strabovexml)
after that I want to update the <x:CommandText> with other valuelike<x:commanText>
can anybody help me out in this.