DropDownList

S

Seelan

Hello folks,
I have a database table with CategoryID, Name and Description. I
made 2 DropDown Lists one for Displaying Name and the other for
Description. I want to add a web control, lets say a simple Datagrid
that would display the CategoryID depending on the values selected
from the 2 drop down lists. Can some one help me with this please? C#
web forms would be very helpful.

sqlDataAdapter1.Fill(dsCategories11);
DataGrid1.DataBind();
DropDownList1.DataBind();
DropDownList2.DataBind(); //upto this
point data is binded to the ddlist and everything is fine...

sqlDataAdapter1.SelectCommand.CommandText="SELECT CategoryID FROM
Categories WHERE CategoryName="+DropDownList1.SelectedItem.ToString();
sqlDataAdapter1.Fill(dsCategories121);
Datagrid2.DataBind();

//after this I get an error saying "Invalid Coloumn name 'Beverage'
which is the item selected in the drop down list 1.

Please help...
Thanks
Seelan
 
E

EJD

Hi,

I don't know what you're using for your database software, but just as
a suggestion, can you reproduce the full query string along with the
parameter 'Beverage' from the web page and run it in the DB software
itself?

I have a similar setup to yours but it's only using one DDL, and if I
change part of the query by adding a letter to one of the parameters,
say in your case making "CategoryName" into "CategoryName1," it would
give me the same error but instead of it saying "invalid column name
'beverage'" it would say invalid column name 'CategoryName1'.

You may want to check what your DDL1.DataMember equals as well...
I suppose it could also be that there is some kind of disconnect
between your query and your dsCategor­ies121...

HTH.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top