Ok... on a standard GridView and I can do this:
Can someone please tell me the equivalent uisng the RadGrid... I'm pulling my hair out.
Thanks!!!
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e) { string fileName = e.Values["FullName"].ToString(); if (File.Exists(Server.MapPath("~/Uploads/" + fileName))) { File.Delete(Server.MapPath("~/Uploads/" + fileName)); } }Can someone please tell me the equivalent uisng the RadGrid... I'm pulling my hair out.
Thanks!!!