gpt4 book ai didi

c# - 获取添加 onrowdatabound asp.net c# 的下拉列表的值

转载 作者:太空宇宙 更新时间:2023-11-03 14:59:12 24 4
gpt4 key购买 nike

我正在查询一个用值填充 gridview 的数据库,还在数据 View “onrowdatabound”中的每个单元格中添加下拉框,以便在填充 gridview 时填充这些 DDL。

我希望能够单击一个按钮以从这些 DDL 中获取值,但是当单击该按钮时发生回发并且所有 DDL 都消失了,它为我提供了 DDL 的默认值。

我假设它们消失了,因为它们没有在页面加载时被调用(我似乎不能这样做,因为它们被称为 onrowdatabound)

<asp:GridView id="View" name="Spview" onrowdatabound="populateCellswithDDls" runat="server"></asp:GridView>

在循环每个单元格的内部“populateCellswithDDls”函数中添加 ddl:

 e.Row.Cells[i].Controls.Add(DDL1);

接下来我要玩的是 ViewState 和 Sessions,用于在回发时保存下拉列表(尝试在“populateCellswithDDls”函数中创建 session :

DropDownList DDL1 = new DropDownList();

//I've tried newSkillsMon.AutoPostBack = true; but this just removes them all too

Session.Add("ViewState", View);
Session.Add("DropdownState", DDL1);

我已经尝试过对 viewstate 和 session 进行各种处理,但不确定在何处使用它们来保存“onrowdatabound”人口的状态。

我的按钮目前看起来像这样:

 protected void confirm_Click(object sender, EventArgs e){

{foreach (GridViewRow row in View.Rows)

// if (DDL1.SelectedItem.Value != "Select Item"){

if (IsPostBack)
{
Debug.WriteLine(DDL1.SelectedValue);
}

这只是给我 X 数量的“选择项目”,而不是我在 DDL 中选择的内容

我缺少什么,我应该在哪里添加这些 session 以保留由 onrowdatabound 创建的 ddl?

谢谢

最佳答案

创建动态控件时,您需要在每次页面加载时重新创建它们,包括回传。因此,首先在 IsPostBack 检查之外绑定(bind) GridView 数据。

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//normally you would bind here
}

//but now bind grid every page load
GridView1.DataSource = Common.LoadFromDB();
GridView1.DataBind();
}

现在在 RowDataBound 事件中确保 DropDownList 有一个 ID

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//check if the row is a datarow
if (e.Row.RowType == DataControlRowType.DataRow)
{
//create a dropdownlist and assign an ID
DropDownList DDL1 = new DropDownList();
DDL1.ID = "DDL1";

//add some dummy listitems
DDL1.Items.Insert(0, new ListItem() { Text = "A", Value = "A" });
DDL1.Items.Insert(1, new ListItem() { Text = "B", Value = "B" });
DDL1.Items.Insert(2, new ListItem() { Text = "C", Value = "C" });

//add the control to the row
e.Row.Cells[0].Controls.Add(DDL1);
}
}

现在您可以通过单击按钮从正确的行中获取值。

protected void Button1_Click(object sender, EventArgs e)
{
//find the dropdownlist in the correct row and cast it back to one
DropDownList DDL1 = GridView1.Rows[i].FindControl("DDL1") as DropDownList;

//display the result
Label1.Text = DDL1.SelectedValue;
}

关于c# - 获取添加 onrowdatabound asp.net c# 的下拉列表的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47099739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com