3
Reply

Editable GridView with Complex XML as DataSource

Divya Maheswari Kiyanuru

Divya Maheswari Kiyanuru

Aug 10 2016 3:31 AM
208

Hi,

I have an requirement for editable XML. So for that i need to get the data from XML file which is complex data with multiple nested table set to gridview.Can any one help me .

Thanks in Advance
<?xml version="1.0" encoding="utf-8" ?>
<Countries>
<Country>
<CountryName>Australia</CountryName>
<State>
<States>
<StateName>Melborn<StateName>
<StateID>1<StateID> 
</States>
<States>
<StateName>Crawley<StateName>
<StateID>2<StateID>
</States> 
</State>  
<LabelABN>ABN</LabelABN>
<TextBoxLimitABN>14</TextBoxLimitABN>
<LabelACN>ACN</LabelACN>
<TextBoxLimitACN>14</TextBoxLimitACN>
</Country>
<Country>
<CountryName>Pakistan</CountryName>
<LabelABN>NTN</LabelABN>
<TextBoxLimitABN>20</TextBoxLimitABN>
<LabelACN>BNumber</LabelACN>
<TextBoxLimitACN>22</TextBoxLimitACN>
</Country>
<Country>
<CountryName>India</CountryName>
<LabelABN>NTT</LabelABN>
<TextBoxLimitABN>18</TextBoxLimitABN>
<LabelACN>IDP</LabelACN>
<TextBoxLimitACN>24</TextBoxLimitACN>
</Country>
</Countries>
 

Answers (3)