I'm working on a desktop application in C# forms.I need this List of Banks in a combobox as drop
down list, like this one. 

Currently I've populated the comboBox drop down list myself. But I want to fetch that list from the given link. I'd search on google and found few answers but they are not helping.
I tried to get that data by using following code but I only got some html like contents in result.
System.Net.WebClient wc = new System.Net.WebClient();
string webData = wc.DownloadString("http://www.pakwatan.pk/banks-pakistan/");
cbBankName.DataSource = webData.ToList();I don't know how to extract require contents from following result.
xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40"> http-equiv="Content-Type" content="text/html; charset=windows-1252"> BANKS IN PAKISTAN 
Ammar ShaukatPosted Oct 28, 2015, 6:32 AM
Jitendra KumarPosted Oct 17, 2015, 3:10 AM