C# “指定的参数超出了有效值的范围”

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/17038808/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-10 08:26:01  来源:igfitidea点击:

"Specified argument was out of the range of valid values"

c#asp.netwebforms

提问by Bishan

I'm adding dynamic Rows in ASP.Net GridView Control with TextBoxes. But I'm getting the error below when I click on my Add New Rowbutton.

我正在使用文本框在 ASP.Net GridView 控件中添加动态行。但是当我单击“添加新行”按钮时出现以下错误。

Specified argument was out of the range of valid values. Parameter name: index

指定的参数超出了有效值的范围。参数名称:索引

What could be the error ?

可能是什么错误?

Th code in my .aspxfile

我的.aspx文件中的代码

<div id="Div1" class="divTable">
    <asp:gridview id="Gridview1" runat="server" autogeneratecolumns="false" gridlines="None"
        width="100%" height="100%">
            <Columns>
                <asp:TemplateField>
                    <ItemTemplate>
                        <div class="divRow">
                            <div class="divColumn">
                                <div>
                                    <asp:Label ID="lbl1" runat="server" Text="Type Name" CssClass="formLable"></asp:Label>
                                </div>
                                <div>
                                    <asp:TextBox ID="txt_type" Width="200" runat="server" CssClass="txtbox"></asp:TextBox>
                                </div>
                                <span>
                                    <asp:RequiredFieldValidator ID="TYPE_NAME_VAL" runat="server" ControlToValidate="txt_type"
                                        ErrorMessage="Type is required." Display="Dynamic" CssClass="error"></asp:RequiredFieldValidator>
                                </span>
                            </div>
                            <div class="divColumn">
                                <div>
                                    <asp:Label ID="lbl2" runat="server" Text="Total" CssClass="formLable"></asp:Label>
                                </div>
                                <div>
                                    <asp:TextBox ID="txt_total" Width="200" runat="server" CssClass="txtbox"></asp:TextBox>
                                </div>
                            </div>
                        </div>
                        <div class="divRow">
                            <div class="divColumn">
                                <div>
                                    <asp:Label ID="lbl3" runat="server" Text="Max" CssClass="formLable"></asp:Label>
                                </div>
                                <div>
                                    <asp:TextBox ID="txt_max" Width="200" runat="server" CssClass="txtbox"></asp:TextBox>
                                </div>
                            </div>
                            <div class="divColumn">
                                <div>
                                    <asp:Label ID="lbl4" runat="server" Text="Min" CssClass="formLable"></asp:Label>
                                </div>
                                <div>
                                    <asp:TextBox ID="txt_min" Width="200" runat="server" CssClass="txtbox"></asp:TextBox>
                                </div>
                            </div>
                            <div class="divColumn">
                                <div>
                                    <asp:Label ID="lbl5" runat="server" Text="Rate" CssClass="formLable"></asp:Label>
                                </div>
                                <div>
                                    <asp:TextBox ID="txt_rate" Width="200" runat="server" CssClass="txtbox"></asp:TextBox>
                                </div>
                            </div>
                        </div>
                        <asp:Button ID="ButtonAdd" runat="server" Text="Add New Row" OnClick="ButtonAdd_Click"
                            CausesValidation="False" />
                    </ItemTemplate>
                </asp:TemplateField>
            </Columns>
        </asp:gridview>
</div>

C# code of ButtonAdd_Click()

ButtonAdd_Click() 的 C# 代码

if (ViewState["CurrentTable"] != null)
{
    DataTable dtCurrentTable = (DataTable)ViewState["CurrentTable"];
    DataRow drCurrentRow = null;
    if (dtCurrentTable.Rows.Count > 0)
    {
        for (int i = 1; i <= dtCurrentTable.Rows.Count; i++)
        {
            //extract the TextBox values
            TextBox box1 = (TextBox)Gridview1.Rows[rowIndex].Cells[1].FindControl("txt_type");
            TextBox box2 = (TextBox)Gridview1.Rows[rowIndex].Cells[2].FindControl("txt_total");
            TextBox box3 = (TextBox)Gridview1.Rows[rowIndex].Cells[3].FindControl("txt_max");
            TextBox box4 = (TextBox)Gridview1.Rows[rowIndex].Cells[4].FindControl("txt_min");
            TextBox box5 = (TextBox)Gridview1.Rows[rowIndex].Cells[5].FindControl("txt_rate");

            drCurrentRow = dtCurrentTable.NewRow();

            dtCurrentTable.Rows[i - 1]["Column1"] = box1.Text;
            dtCurrentTable.Rows[i - 1]["Column2"] = box2.Text;
            dtCurrentTable.Rows[i - 1]["Column3"] = box3.Text;
            dtCurrentTable.Rows[i - 1]["Column4"] = box4.Text;
            dtCurrentTable.Rows[i - 1]["Column5"] = box5.Text;

            rowIndex++;
        }
        dtCurrentTable.Rows.Add(drCurrentRow);
        ViewState["CurrentTable"] = dtCurrentTable;

        Gridview1.DataSource = dtCurrentTable;
        Gridview1.DataBind();
    }
}
else
{
    Response.Write("ViewState is null");
}

采纳答案by Terry

It seems that you are trying to get 5 items out of a collection with 5 items. Looking at your code, it seems you're starting at the second value in your collection at position 1. Collections are zero-based, so you should start with the item at index 0. Try this:

您似乎试图从包含 5 个项目的集合中获取 5 个项目。查看您的代码,您似乎从位置 1 处的集合中的第二个值开始。集合是从零开始的,因此您应该从索引 0 处的项目开始。试试这个:

TextBox box1 = (TextBox)Gridview1.Rows[i].Cells[0].FindControl("txt_type");
TextBox box2 = (TextBox)Gridview1.Rows[i].Cells[1].FindControl("txt_total");
TextBox box3 = (TextBox)Gridview1.Rows[i].Cells[2].FindControl("txt_max");
TextBox box4 = (TextBox)Gridview1.Rows[i].Cells[3].FindControl("txt_min");
TextBox box5 = (TextBox)Gridview1.Rows[i].Cells[4].FindControl("txt_rate");

回答by Furqan Ashraf

try this.

尝试这个。

if (ViewState["CurrentTable"] != null)
            {
                DataTable dtCurrentTable = (DataTable)ViewState["CurrentTable"];
                DataRow drCurrentRow = null;
                if (dtCurrentTable.Rows.Count > 0)
                {
                    for (int i = 1; i <= dtCurrentTable.Rows.Count; i++)
                    {
                        //extract the TextBox values
                        TextBox box1 = (TextBox)Gridview1.Rows[i].Cells[1].FindControl("txt_type");
                        TextBox box2 = (TextBox)Gridview1.Rows[i].Cells[2].FindControl("txt_total");
                        TextBox box3 = (TextBox)Gridview1.Rows[i].Cells[3].FindControl("txt_max");
                        TextBox box4 = (TextBox)Gridview1.Rows[i].Cells[4].FindControl("txt_min");
                        TextBox box5 = (TextBox)Gridview1.Rows[i].Cells[5].FindControl("txt_rate");

                        drCurrentRow = dtCurrentTable.NewRow();
                        drCurrentRow["RowNumber"] = i + 1;

                        dtCurrentTable.Rows[i - 1]["Column1"] = box1.Text;
                        dtCurrentTable.Rows[i - 1]["Column2"] = box2.Text;
                        dtCurrentTable.Rows[i - 1]["Column3"] = box3.Text;
                        dtCurrentTable.Rows[i - 1]["Column4"] = box4.Text;
                        dtCurrentTable.Rows[i - 1]["Column5"] = box5.Text;

                        rowIndex++;
                    }
                    dtCurrentTable.Rows.Add(drCurrentRow);
                    ViewState["CurrentTable"] = dtCurrentTable;

                    Gridview1.DataSource = dtCurrentTable;
                    Gridview1.DataBind();
                }
            }
            else
            {
                Response.Write("ViewState is null");
            }

回答by Syed Mohamed

I was also getting same issue as i tried using value 0 in non-based indexing,i.e starting with 1, not with zero

我也遇到了同样的问题,因为我尝试在非基于索引中使用值 0,即从 1 开始,而不是从零开始