Click here to Skip to main content
15,895,779 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,
I have Customer class with the following properties:

Customer
- CustomerID
- CustomerName
- CustomerLastName

I have bind list of customer to dropdownlist with DataTextField as CustomerName, and DataValueField as CustomerID.

Now when I am selecting customer from dropdown i want CustomerLastName for some other operation.
So how can access CustomerLastName using ASP.Net and C#


Thanks,
Parimal
Posted
Updated 11-May-13 7:36am
v2

1 solution

When the CustomerID is unique you can get the CustomerLastName by the CustomerID.
How you do that in the end depends on how you store the data, can you give me details about the database system you are using? Or are you using a file to store the customers?
 
Share this answer
 
Comments
Member 4074673 11-May-13 13:54pm    
I am using sql server 2008.
Marco Bertschi 11-May-13 13:56pm    
Then you can get the Customer by its ID on the SelectedIndexChanged event of the dropdown, and then read the CustomerLastName from the corresponding property.

Hope I could help ya,
cheers
Marco

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900