DropDownList是放在FormView上的,后者绑定到一个数据源.
DropDownList的Items是代码设置的,我想把数据源中对应的值绑定到它的SelectedIndex属性,
代码如下:
<asp:FormView
ID="FromView1"
DataKeyNames="ID"
DataSourceID="myDataSource"
AllowPaging="true"
runat="server">
<ItemTemplate>
<h3><%# Eval("Date") %></h3>
<asp:TextBox
ID="txtDate"
Text='<%# Bind("Date") %>'
runat="server" />
<asp:DropDownList ID="DropDownList1" runat="server">(如何绑定?)
<asp:ListItem>IC</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
<asp:ListItem>5</asp:ListItem>
</asp:DropDownList>
</ItemTemplate>
</formview>
<asp:ObjectDataSource
ID="myDataSource"
TypeName="ShanShan.myClass"
SelectMethod="SelectAll"
UpdateMethod="Update"
InsertMethod="Insert"
DeleteMethod="Delete"
runat="server" >
</asp:ObjectDataSource>
DropDownList 能像TextBox那样直接Bind绑定么?
望不吝赐教!
繁星点点滴滴
慕森王
手掌心
富国沪深