I've got an XML file which has multiple entries, each looking like this:
-<CRQ>
<ID>CRQ000000003314</ID>
<Status>1</Status>
<Summary>complete</Summary>
<Service>Server</Service>
<Impact>3000</Impact>
<Risk>2</Risk>
<Urgency>4000</Urgency>
<Class>4000</Class>
<Environment>1000</Environment>
<Trigger/>
<TriggerID>CP_00</TriggerID>
<Coordinator>user name</Coordinator>
<Desc>ticket description.</Desc>
</CRQ>
I have a string in a C# app which matches the id, eg CRQ000000003314. How would I be able to load the XML and then return the elements underneath the id (status summary etc) into separate text boxes when this string is matched on an event?