I have a list box in my aspx page:
<asp:ListBox ID="lstTreatmentProvider" runat="server" SelectionMode="Multiple" Width="175px"
Height="81" CssClass="SingleColumnlist" DataSourceID="dtsTreatmentProviders" DataTextField="FirstName" DataValueField="ServiceId"></asp:ListBox>
I am using this datasource for listbox:
<asp:ObjectDataSource ID="dtsTreatmentProviders" runat="server" SelectMethod="GetAllTreatmentProviders"
TypeName="Pc.PrecisionCare2.BLL.Administration.TreatmentProvider.TreatmentProviderBO"
SortParameterName="sortExpression"></asp:ObjectDataSource>
As you can see, I am using in list box, DataTextField="FirstName"
because my datasource returns some data of treatment provider including first name, last name etc.
I want to have my list box as containing First Name + Last Name
Can I do this somehow using DataTextField property?
PS: I do not want to do this in cs file. I want something in aspx.
Thanks in advance.
You can get the
First Name + Last Name
in your SQL query, if you don't want to do it in code behind. e.g...