如果我从 FormView.EditMode 更改为 FormView.InsertMode,则 dropdownlist.databind() 时出错

发布于 2024-11-16 21:38:11 字数 1482 浏览 2 评论 0原文

我有一个像这样的FormView:

<EditItemTemplate>
    <th>Test Name</td>
    <td><asp:Label runat="server" ID="lblSuite" Text='<%# Eval("Suite") %>'></asp:Label></td>
</EditItemTemplate>
<InsertItemTemplate>
    <th>Test Name</td>
    <td><asp:DropDownList ID="insertSuite" runat="server"></asp:DropDownList></td>
</InsertItemTemplate>

这意味着在InsertMode中,用户可以使用下拉列表更改Suite,而在EditMode中,用户只能看到Suite但不能进行修改。 如果用户单击其中一条记录,FormView 将更改为 EditMode,代码如下:

protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
    //getDatasource
    FormView1.DataSource = objList;
    FormView1.ChangeMode(FormViewMode.Edit);
    FormView1.DataBind();
}

如果用户单击 Add New 按钮,FormView 将更改为 InsertMode,代码如下: FormView1.ChangeMode(FormViewMode.Insert);

protected void btnAddSingle_Click(object sender, EventArgs e)
{
    FormView1.ChangeMode(FormViewMode.Insert);

    DropDownList drp = (DropDownList)FormView1.FindControl("insertSuite");
    drp.DataSource = otherRepo.SuiteDropdownListDataSource(2);
    drp.DataTextField = "Name";
    drp.DataValueField = "Name";
    drp.DataBind();
}

我的问题是: 如果我单击其中一条记录并进入 EditMOde,然后单击 Add New 按钮,则会发生错误。 (DropDownList)FormView1.FindControl("insertSuite") 为空。

我认为这是关于生命周期的问题,但无法弄清楚。

I have a FormView like:

<EditItemTemplate>
    <th>Test Name</td>
    <td><asp:Label runat="server" ID="lblSuite" Text='<%# Eval("Suite") %>'></asp:Label></td>
</EditItemTemplate>
<InsertItemTemplate>
    <th>Test Name</td>
    <td><asp:DropDownList ID="insertSuite" runat="server"></asp:DropDownList></td>
</InsertItemTemplate>

Which means in InsertMode, the user can change Suite using a dropdownlist while in EditMode, the user can only see Suite but cannot do modification.
If the user click one of the record, FormView was changed into EditMode with the code:

protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
    //getDatasource
    FormView1.DataSource = objList;
    FormView1.ChangeMode(FormViewMode.Edit);
    FormView1.DataBind();
}

If the user click the Add New button, FormView was changed into InsertMode with the code:
FormView1.ChangeMode(FormViewMode.Insert);

protected void btnAddSingle_Click(object sender, EventArgs e)
{
    FormView1.ChangeMode(FormViewMode.Insert);

    DropDownList drp = (DropDownList)FormView1.FindControl("insertSuite");
    drp.DataSource = otherRepo.SuiteDropdownListDataSource(2);
    drp.DataTextField = "Name";
    drp.DataValueField = "Name";
    drp.DataBind();
}

My Problem is:
If I click the one of the record and get into EditMOde, Then click the Add New button, Then error occured.
the (DropDownList)FormView1.FindControl("insertSuite") is null.

I thought it was something about lifecycle but cannot figure it out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏闹i 2024-11-23 21:38:11

您必须在调用 ChangeMode 之后、FormView1.FindControl 之前对 FormView 进行DataBind

所以这有效:

FormView1.ChangeMode(FormViewMode.Insert);
FormView1.DataBind();
DropDownList drp = (DropDownList)FormView1.FindControl("insertSuite");

You have to DataBind the FormView after you've called ChangeMode and before FormView1.FindControl.

So this works:

FormView1.ChangeMode(FormViewMode.Insert);
FormView1.DataBind();
DropDownList drp = (DropDownList)FormView1.FindControl("insertSuite");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文