Kenia 0 Report post Posted May 6, 2010 Looking at the example on the RealEstate webProject. I'm following how the DataBind_GetData.aspx is binding the grid depending on the selection made on the dropdown. However, when I make my selection the grid dosnt get updated. Any help is appreciated. Quote Share this post Link to post Share on other sites
CarlosAC 0 Report post Posted May 18, 2010 Hi Kenia I have created a simple Project, using Visual Studio 2008 and C# (I am attaching it as a zip file). Also, I have created a simple table with only 2 rows, in order to demonstrate the selection of the data based on the databinding from a ComboBox. Following, you will find the script for the datatable creation and data insertion: create table KeniaTest( id numeric, firstName nvarchar(20), lastName nvarchar(20), country nvarchar(20),) insert into KeniaTestvalues(1, 'Kenia', 'Aleman-Osorio', 'USA') insert into KeniaTestvalues(2, 'Carlos', 'Chaves', 'Costa Rica') Please create this datatable in your database and try the sample project I am attaching. Carlos Chaves Quote Share this post Link to post Share on other sites
Barry 0 Report post Posted June 14, 2010 Awesome. I was searching Google for an answer to this issue and I found it, perfect. Thanks!!! Quote Share this post Link to post Share on other sites