Hi
I am new to asp and have a deadline in the next few days. i receive the following xml from within a webservice response.
print("<?xml version="1.0" encoding="UTF-8"?>
<user_data>
<execution_status>0</execution_status>
<row_count>1</row_count>
<txn_id>stuetd678</txn_id>
<person_info>
<attribute name="firstname">john</attribute>
<attribute name="lastname">doe</attribute>
<attribute name="emailaddress">[email protected]</attribute>
</person_info>
</user_data>");
How can i parse this xml into asp attributes?
Any help is greatly appreciated
Thanks Damien
On more analysis, some soap stuff is also returned as the aboce response is from a web service call. can i still use lukes code below?