I need to return the values for ID="3" and ID="4" to Labels
The xml string is stored in the database column exactly like this:
<Attributes><CheckoutAttribute ID="3"><CheckoutAttributeValue><Value>dear jason, wishing you a happy easter</Value></CheckoutAttributeValue></CheckoutAttribute><CheckoutAttribute ID="4"><CheckoutAttributeValue><Value>Thursday, 31-03-2016</Value></CheckoutAttributeValue></CheckoutAttribute></Attributes>
I'm looking to get the output as follows.
Label1.Text = "dear jason, wishing you a happy easter";
Label2.Text = "Thursday, 31-03-2016";
Label1 will always be for ID="3" Label2 will always be for ID="4"
Thanks