悬赏园豆:20
[已解决问题]
解决于 2008-08-07 17:45
<P>DropDownList是放在FormView上的,后者绑定到一个数据源.</P>
<P>DropDownList的Items是代码设置的,我想把数据源中对应的值绑定到它的SelectedIndex属性,</P>
<P>代码如下:</P>
<P><asp:FormView <BR> ID="FromView1"<BR> DataKeyNames="ID"<BR> DataSourceID="myDataSource"<BR> AllowPaging="true"<BR> runat="server"><BR> <ItemTemplate></P>
<P> <h3><%# Eval("Date") %></h3> </P>
<P> <asp:TextBox<BR> ID="txtDate"<BR> <STRONG> Text='<%# Bind("Date") %>'<BR></STRONG> runat="server" /> </P>
<P> <asp:DropDownList ID="DropDownList1" runat="server"><STRONG>(如何绑定?)</STRONG><BR> <asp:ListItem>IC</asp:ListItem><BR> <asp:ListItem>1</asp:ListItem><BR> <asp:ListItem>2</asp:ListItem><BR> <asp:ListItem>3</asp:ListItem><BR> <asp:ListItem>4</asp:ListItem><BR> <asp:ListItem>5</asp:ListItem><BR> </asp:DropDownList> </P>
<P> </ItemTemplate></P>
<P></formview></P>
<P><asp:ObjectDataSource<BR> ID="myDataSource"<BR> TypeName="ShanShan.myClass"<BR> SelectMethod="SelectAll"<BR> UpdateMethod="Update"<BR> InsertMethod="Insert"<BR> DeleteMethod="Delete"<BR> runat="server" ><BR> </asp:ObjectDataSource> </P>
<P>DropDownList 能像TextBox那样直接Bind绑定么?</P>
<P>望不吝赐教!</P>