0

我在 3 个不同的页面中有 3 个 GridView 控件。它们以前工作得很好。突然我收到这个错误信息:

无效的回发或回调参数。使用启用事件验证<pages enableeventvalidation="true" />

所以我试图把<@pages enableeventvalidation="false" />页面。它仍然没有工作。我从页面中删除了这个命令。然后,当单击所有网格视图控件的网格视图中的按钮时,会显示另一条消息“索引超出范围”。

int id = Convert.ToInt32(myGridView.DataKeys[e.RowIndex].Value)

看起来 gridview 找不到 datakey (e.rowIndex的值是 OK ),Datakeynames 已设置。

protected void gvItemCategory_RowDeleting(object sender, GridViewDeleteEventArgs e) {

    int categoryId = Convert.ToInt32(gvItemCategory.DataKeys[e.RowIndex].Value);

    CollectionCategory category = new CollectionCategory();
    category.CategoryId = categoryId; 
    category.Delete();
    ItemCateogryShowData();
}

HTML:

<asp:GridView ID="gvItemCategory" runat="server" AutoGenerateColumns="False"
OnRowCancelingEdit="gvItemCategory_RowCancelingEdit"
    OnRowDeleting="gvItemCategory_RowDeleting" OnRowEditing="gvItemCategory_RowEditing"
    DataKeyNames="CategoryId" OnRowUpdating="gvItemCategory_RowUpdating">
    <Columns>
        <asp:TemplateField HeaderText="CateogoryName">
            <ItemTemplate>
                <asp:Label ID="lblItemCategoryName" runat="server"    Text='<%#Eval("CategoryName") %>'></asp:Label>
            </ItemTemplate>
            <EditItemTemplate>
                <asp:TextBox ID="tbItemCateogryName" runat="server" Text='<%#Eval("CategoryName") %>'></asp:TextBox>
            </EditItemTemplate>
        </asp:TemplateField>
        <asp:CommandField ShowEditButton="True" ButtonType="Button" />
        <asp:CommandField ShowDeleteButton="True" />
    </Columns>
    </asp:GridView>
4

1 回答 1

0

尝试在页面加载方法上绑定您的 Gridview !ispostback..

If(!isPostback)
{
 //your code here
}

尝试这个

int categoryId = Convert.ToInt32(gvItemCategory.DataKeys[e.RowIndex].Value.Tostring());

注意:也使用EnableeventValidation="false"

于 2013-03-11T11:30:06.687 回答