How to show xml data into dropdownlist in asp.net. [Resolved]

Posted by Shweta_Pinky under ASP.NET on 8/31/2013 | Points: 10 | Views : 1956 | Status : [Member] | Replies : 1
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




Responses

Posted by: Bandi on: 8/31/2013 [Member] [MVP] Platinum | Points: 25

Up
0
Down
refer this link
http://asp-net-example.blogspot.in/2008/10/dropdownlist-example-how-to-populate.html

Mark This Response as Answer
--
Chandu
http://www.dotnetfunda.com/images/dnfmvp.gif

Shweta_Pinky, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response