我的列表字段中现在只有1行,其中包含' FirstName'但是我需要在listfield中有另外两行。
<asp:ListBox ID="ListBox1" runat="server" DataSourceID="SqlDataSource1" DataTextField="FirstName" DataValueField="Insertion"></asp:ListBox>
仅显示DataTextField="FirstName"
,但我需要在列表字段中显示FirstName,Insertion和LasName
答案 0 :(得分:0)
我认为你无法以正常方式实现这一点,你应该在返回的查询中自定义返回的数据:select FirstName + ' ' + LastName as FullName from table
然后设置DataTextField = "FullName"