protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        string FullPath1 = e.Values["FullPath"].ToString();
        if (System.IO.File.Exists(FullPath1))
        {
            System.IO.File.Delete(FullPath1);
        }
    }FullPath为文件全路径的字段。