Hi,
I am new to VB.NET and xml and I am trying to parse the xml file of format mentioned below and display it using textbox in VB.NET. But I am not able to parse it. Can anybody pls give me a code snippet to parse the xml shown below :
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Table>
<Product>
<Product_id value="1"/>
<Product_name value="Product 1"/>
<Product_price value="1000"/>
</Product>
<Product>
<Product_id value="2"/>
<Product_name value="Product 2"/>
<Product_price value="5000"/>
</Product>
</Table>.