带有ObjectDataSource的下拉列表的C#selectedvalue
本文关键字:C#selectedvalue 下拉列表 带有 ObjectDataSource | 更新日期: 2023-09-27 18:21:30
如果dropdownlist在编辑时,网格视图和下拉列表由对象数据源填充按钮被点击?
我的应用程序发生的情况是下载列表被填充但是第一项总是显示为selectedvalue。
在数据网格视图行数据绑定事件中执行此
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataRowView dRowView1 = (DataRowView)e.Row.DataItem;
if ((e.Row.RowState= DataControlRowState.Edit) > 0)
{
DropDownList YourdropDown = (DropDownList)e.Row.FindControl("YourdropDown") as DropDownList;
if (YourdropDown!=null){
YourdropDown.SelectedValue = dRowView1["ID"].ToString();
}
}
}
标记:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="Id" DataSourceID="ObjectDataSource1" OnRowDataBound="GridView1_RowDataBound">
<Columns>
<asp:CommandField ShowEditButton="True" />
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField DataField="Id" HeaderText="Id" SortExpression="Id" />
<asp:BoundField DataField="Firstname" HeaderText="Firstname" SortExpression="Firstname" />
<asp:BoundField DataField="Lastname" HeaderText="Lastname" SortExpression="Lastname" />
<asp:TemplateField HeaderText="Age">
<ItemTemplate>
<%#Eval("Age") %>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList runat="server" ID="ddlAge">
<Items>
<asp:ListItem Text="10" Value="10"></asp:ListItem>
<asp:ListItem Text="20" Value="20"></asp:ListItem>
<asp:ListItem Text="30" Value="30"></asp:ListItem>
<asp:ListItem Text="40" Value="40"></asp:ListItem>
<asp:ListItem Text="50" Value="50"></asp:ListItem>
<asp:ListItem Text="60" Value="60"></asp:ListItem>
<asp:ListItem Text="70" Value="70"></asp:ListItem>
<asp:ListItem Text="80" Value="80"></asp:ListItem>
<asp:ListItem Text="90" Value="90"></asp:ListItem>
</Items>
</asp:DropDownList>
</EditItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetAll" TypeName="OdsSelectedItem.App_Data.StudentsBll"></asp:ObjectDataSource>
代码:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Student item = e.Row.DataItem as Student;
if (item != null)
{
var ddl = e.Row.FindControl("ddlAge") as DropDownList;
if (ddl == null) return;
ddl.SelectedValue = item.Age.ToString();
}
}
}
糟糕的例子,但我认为它显示了正确的方向:)
我今天也遇到了类似的问题。我的问题是,我需要将名称列表中的选定值绑定到下拉列表中。但是我必须向obj数据源传递一个"selected值"来填充下拉列表。
您不能绑定"selectedValue"并使用它将数据传递给将填充该下拉列表的函数。
这是我的解决方案:
<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="ObjectDataSource1" DataTextField="Text" DataValueField="Value" ToolTip='<%#Eval("ID") %>' SelectedValue='<%# Bind("ManagerID") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="getallIDs" TypeName="MyClass" OldValuesParameterFormatString="original_{0}">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1" Name="ID" PropertyName="ToolTip" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>