如何从datalist代表id删除图像?

时间:2013-10-25 09:26:07

标签: c# asp.net

我想代表id删除datalist中的图片,但此代码无效 错误:索引超出范围。必须是非负数且小于集合的大小。参数名称:index

public void show_top_one()
{
    BusinessLogic b1 = new BusinessLogic();
    string query = "select txt_img_name from tbl_gallery2";
    DataSet ds = b1.GetDataSet(query);
    DataList1.DataSource = ds.Tables[0];
    DataList1.DataBind();
}

protected void DataList1_DeleteCommand(object source, DataListCommandEventArgs e)
{
    BusinessLogic b1 = new BusinessLogic();
    int id = Convert.ToInt32(DataList1.DataKeys[e.Item.ItemIndex]);
    string query = "Delete from tbl_gallery2 where id='"+id+"'";
    b1.ExecuteQuery(query);
    show_top_one();

}

}

5 个答案:

答案 0 :(得分:2)

请更改您的选择查询。

string query = "select id,txt_img_name from tbl_gallery2";

现在请将DataKeyName添加到您的数据列表中,如

<asp:DataList DataKeyField="id"

因此,这会将Id列添加到datakey。然后你可以在后端获得它的价值。

答案 1 :(得分:0)

试试这个:你错了。我猜错了。

protected void DataList1_DeleteCommand(object source, DataListCommandEventArgs e)
{
    BusinessLogic b1 = new BusinessLogic();
    int id = Convert.ToInt32(DataList1.DataKeys[e.Item.ItemIndex].Value);
    string query = "Delete from tbl_gallery2 where id='"+id+"'";
    b1.ExecuteQuery(query);
    show_top_one();

}

答案 2 :(得分:0)

如果是int

,则不需要单引号
 string query = "Delete from tbl_gallery2 where id="+id;

您还需要在选择查询中选择id列以及数据键

答案 3 :(得分:0)

好的,你的代码没有给我很多信息,但如果你已经配置了DataSet,那么你可以写一个方法: 1.通过id获取图像。 2.删除所选图像。

 public "classname where the image is" GetById(int id)
    {
        return ds.Find(id);  //ds is your DataSet
    }

找到后

 public void Delete(int id)
    {
        var entity = this.GetById(id);
        if (entity!=null)
        {
            this.Delete(entity);
        }
    }

这应该是一个干净而美好的答案:)

祝你好运!

答案 4 :(得分:0)

首先,您需要检查此值

 DataList1.DataKeys[e.Item.ItemIndex].Value

您可能在上面的参数中获得空值。如果是,您可能没有在数据列表中设置数据密钥字段。

因此,您需要先在DataList中设置DataKeyField,然后再使用代码。