I have a listbox containing Users. The datasource is an generic list of the type User (contains, id, firstname, lastname, ...). Now I want to use the id as datavalue (through dataValueField) and I want LastName + ' ' + Firstname as a DataTextField.
Can anyone tell me how this is possible?
I'm using C# (ASP.NET).
The easiest way is to add a new property to the User class that contains the full name:
And bind the listbox to that.
This has the advantage of centralising the logic behind how the full name is constructed, so you can use it in multiple places across your website and if you need to change it (to Firstname + " " + Lastname for example) you only need to do that in one place.
If changing the class isn't an option you can either create a wrapper class:
Or hook into the itemdatabound event (possibly got the name wrong there) and alter the list box item directly.