dropdownlist的第一个值,sql,asp.net,c#

时间:2011-05-01 12:13:34

标签: drop-down-menu ddl

我有下一个ddl代码(asp.net,c#):

<asp:DropDownList ID="ddl1" runat="server" AutoPostBack="True" 
    DataSourceID="LinqDataSource1" DataTextField="CarName1" 
    DataValueField="id" onselectedindexchanged="ddl1_SelectedIndexChanged" 

<asp:LinqDataSource ID="LinqDataSource1" runat="server" 
    ContextTypeName="DataClassesDataContext"  EntityTypeName="" TableName="CarNames">
</asp:LinqDataSource>

如你所见,ddl从sql表中获取值...我希望第一个值显示--select car-- ...

我在这里尝试了很多选项和答案,包括带有AppendDataBoundItems =“true”的listitem选项,但是页面显示了一个错误..关于int32,obj ....的事情。

(仅用于记录 - onselectedindexchanged =“ddl1_SelectedIndexChanged”用于级联其他ddl)..

谢谢!

0 个答案:

没有答案