我在DataGrid EditItemTemplate中創建了一個DropDownList。 (手動)如何在edititemtemplate - datagridview中獲取dropdownlist的選定值?
<EditItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="SqlDataSource1" DataTextField="nazwa" DataValueField="nazwa"
SelectedValue='<%# Bind("nazwa") %>'>
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:baza_pismConnectionString1 %>"
SelectCommand="SELECT [nazwa] FROM [podmioty]"></asp:SqlDataSource>
</EditItemTemplate>
如何從後面的代碼中的下拉列表中獲取所選值?
當u想要的設定值的下拉我的意思是,在此情況 –
試着看的CommandName和CommandArgument屬性DropDownList和GridView的OnRowCommand屬性/事件。 – series0ne