FormView的 OnDataBound事件的签名为 void FormView_DataBound((object sender, EventArgs e),事件参数中没有提供可供使用的数据源对象。
如何将数据源值绑定到某个下拉框选项?
ItemTemplate 中使用:
如何将数据源值绑定到某个下拉框选项?
ItemTemplate 中使用:
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="AccessDataSource2"
DataTextField="CategoryName"
DataValueField="CategoryID"
SelectedValue='<%# Eval("CategoryID") %>'
Enabled="False" />
EditItemTemplate/InsertItemTemplate中使用:<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="AccessDataSource2"
DataTextField="CategoryName"
DataValueField="CategoryID"
SelectedValue='<%# Bind("CategoryID") %>' />
from http://www.mikepope.com/blog/DisplayBlog.aspx?permalink=1423