Datagrid中编辑模板内的文本框返回空文本

时间:2010-11-09 16:05:43

标签: asp.net textbox

我想在按下更新命令时捕获用户输入的文本,并考虑到我更改了编辑和更新命令要命名为激活

 <asp:DataGrid ID="Datagrid1" runat="server" AutoGenerateColumns="False" Width="100%"
    OnCancelCommand="Datagrid1_CancelCommand" OnEditCommand="Datagrid1_EditCommand"
    OnUpdateCommand="Datagrid1_UpdateCommand">
    <Columns>
        <asp:TemplateColumn>
              <EditItemTemplate>
                <table cellpadding="0" cellspacing="0" width="100%">
                    <tr>
                        <td align="center" style="width: 200px; white-space: nowrap;">
                            <asp:Label ID="Label1" runat="server" Text='<%# Eval("Reg_FullName") %>'></asp:Label>
                        </td>
                        <td align="center" style="width: 100px;">
                            <asp:Label ID="lbl_User" runat="server" Text='<%# Eval("Reg_UserName") %>'></asp:Label>
                        </td>
                        <td align="center" style="width: 100px;">
                            <asp:Label ID="lbl_AddedAt" runat="server" Text='<%# Eval("Reg_ActivatedAt") %>'></asp:Label>
                        </td>
                        <td align="center" style="width: 100px;">
                            <asp:Label ID="lbl_IsAct" runat="server" Text='<%# Eval("Reg_IsActive") %>'></asp:Label>
                        </td>
                        <td align="center" style="width: 100px;">
                            <asp:Label ID="lbl_Days" runat="server" Text="<%$ Resources:Okaz, DaysNum %>"></asp:Label>
                        </td>
                        <td align="center" style="width: 100px;">
                            <asp:TextBox ID="Hello_txt" runat="server"></asp:TextBox>
                        </td>
                    </tr>
                </table>
            </EditItemTemplate></asp:TemplateColumn>
        <asp:EditCommandColumn CancelText="Cancel" EditText="Activate"
            UpdateText="Activate"></asp:EditCommandColumn>

我的代码背后是:

protected void Datagrid1_EditCommand(object source, DataGridCommandEventArgs e)
    {
        Datagrid1.EditItemIndex = e.Item.ItemIndex;
        try
        {
            SqlDataSource1.SelectCommand = "Select * from OkazRegisteration";
            Datagrid1.DataSourceID = SqlDataSource1.ID;
            Datagrid1.DataBind();
        }
        catch (Exception ex)
        {
            ErrorLabel.Text = ex.ToString();
        }
    }

    protected void Datagrid1_CancelCommand(object source, DataGridCommandEventArgs e)
    {
        Datagrid1.EditItemIndex = -1;
        try
        {
            SqlDataSource1.SelectCommand = "Select * from OkazRegisteration";
            Datagrid1.DataSourceID = SqlDataSource1.ID;
            Datagrid1.DataBind();
        }
        catch (Exception ex)
        {
            ErrorLabel.Text = ex.ToString();
        }
    }

    protected void Datagrid1_UpdateCommand(object source, DataGridCommandEventArgs e)
    {

        switch (e.Item.ItemType)
        {
            case ListItemType.EditItem:

                TextBox txt_Days = (TextBox)e.Item.FindControl("Hello_txt");
                Label lbl_User = (Label)e.Item.FindControl("lbl_User");

                SqlDataSource2.UpdateCommand = "Update OkazRegisteration set Reg_IsActive='True', Reg_ExpiryDays=" + txt_Days.Text + " , Reg_ActivatedAt='" + DateTime.Now.ToShortDateString() + "' Where Reg_UserName='" + lbl_User.Text + "'";
                SqlDataSource2.Update();
                break;
        }
        try
        {
            SqlDataSource1.SelectCommand = "Select * from OkazRegisteration";
            Datagrid1.DataSourceID = SqlDataSource1.ID;
            Datagrid1.DataBind();
        }
        catch (Exception ex)
        {
            ErrorLabel.Text = ex.ToString();
        }
    }
Datagrid1_UpdateCommand

中的

TextBox txt_Days的文本值始终为空

我做错了什么?

我已经做了很长时间的这种工作,但这次我看不出错误

请帮助,

问候。

1 个答案:

答案 0 :(得分:0)

我发现每次加载页面时都会绑定网格,以便删除文本框中的文本。

希望能给任何人带来同样问题的提示