hmm. Handle your SelectedIndexChanged event and something like this should work:
//Bind the grid then
Label lb = (Label)GridView1.SelectedRow.Cells[9].Controls[0];
lb.Text will now contain 'Canada' so now you can do something like:
ddl.SelectedValue = lb.Text;
hth.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Beginning Visual C# 2008
Professional Search Engine Optimization with ASP.NET
Professional IIS 7 and ASP.NET Integrated Programming
Wrox Blox: Introduction to Google Gears
Wrox Blox: Create Amazing Custom User Interfaces with WPF and .NET 3.0
================================================== =========