How to show xml data into dropdownlist in asp.net.
Here is the xml below
<?xml version="1.0" encoding="utf-8"?>
<studentdata>
<student>
<sid>1</sid>
<sname>Tim</sname>
<smarks>100</smarks>
<saddress>Sydney</saddress>
</student>
<student>
<sid>2</sid>
<sname>Jack</sname>
<smarks>90</smarks>
<saddress>Perth</saddress>
</student>
</studentdata>
Output in dropdownlist
1Tim100Sydney
2 Jack90Perth