I have this probem
<prescription/>
<issued_drug/>
<atc_code>ABC11</atc_code>
<fund_code>1122</fund_code>
</issued_drug>
</prescripron>
<prescription/>
<issued_drug/>
<atc_code>XXC12</atc_code>
<fund_code>5533</fund_code>
</issued_drug>
</prescripron>
<prescription/>
<issued_drug/>
<atc_code>VVC17</atc_code>
<fund_code>2244</fund_code>
</issued_drug>
</prescripron>
I want to retreive fund_code and to put it into a table..Putting it into a table is not a problem..but how to retreive with this
For Each prescription In resp.getElementsByTagName("prescription")
Please help
<prescription/>
<issued_drug/>
<atc_code>ABC11</atc_code>
<fund_code>1122</fund_code>
</issued_drug>
</prescripron>
<prescription/>
<issued_drug/>
<atc_code>XXC12</atc_code>
<fund_code>5533</fund_code>
</issued_drug>
</prescripron>
<prescription/>
<issued_drug/>
<atc_code>VVC17</atc_code>
<fund_code>2244</fund_code>
</issued_drug>
</prescripron>
I want to retreive fund_code and to put it into a table..Putting it into a table is not a problem..but how to retreive with this
For Each prescription In resp.getElementsByTagName("prescription")
Please help