Posted on: 8/19/2014 12:40:25 PM | Views : 365

Hi

Can Some one tell me why delete button it is not work ?

using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class UserControls_FileGridCS : System.Web.UI.UserControl { #region Properties public string HomeFolder { get { return ViewState["HomeFolder"] as string; } set { ViewState["HomeFolder"] = value; } } public string CurrentFolder { get { return ViewState["CurrentFolder"] as string; } set { ViewState["CurrentFolder"] = value; } } public int PageSize { get { return gvFiles.PageSize; } set { ...

Go to the complete details ...