I need XSLT to change the value of Enabled to False if the Name is XYZ in the below XML file.
My XML file is:
<MyRoot>
<Category>
<Name>XYZ</Name>
<Location>mylocation</Location>
<Enabled>True</Enabled>
</Category>
<Category>
<Name>ABC</Name>
<Location>mylocation1</Location>
<Enabled>True</Enabled>
</Category>
<Category>
<Name>DEF</Name>
<Location>mylocation2</Location>
<Enabled>True</Enabled>
</Category>
</MyRoot>
Enabledelements in the sample xml to false, or change some other enabled value to false?