I have an xml file:
<?xml version="1.0" encoding="UTF-8"?>
<SIMPLEVIEWER_DATA>
<IMAGE>
<NAME>doph.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>dragonfly_tattoo.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>images.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>Maori-Tattoos.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>tattoos.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>Cruiser_image.jpg</NAME>
</IMAGE>
</SIMPLEVIEWER_DATA>
I am passing a querystring from an asp page called "NAME"
and I want to be able to delete the Image Node where the Child Node has the same innertext as the query string.
Is this possible.
<?xml version="1.0" encoding="UTF-8"?>
<SIMPLEVIEWER_DATA>
<IMAGE>
<NAME>doph.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>dragonfly_tattoo.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>images.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>Maori-Tattoos.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>tattoos.jpg</NAME>
</IMAGE>
<IMAGE>
<NAME>Cruiser_image.jpg</NAME>
</IMAGE>
</SIMPLEVIEWER_DATA>
I am passing a querystring from an asp page called "NAME"
and I want to be able to delete the Image Node where the Child Node has the same innertext as the query string.
Is this possible.