I would like to add a method to strip out special characters from a filename when it is uploaded, but I am not sure where to put the code. With the regular upload control you can use the saveas dialoge, but I am not sure where to implement this code in the file explorer control. My code looks like this:
if (e.Command == "UploadFile") { RadFileExplorer explorer = sender as RadFileExplorer; if (explorer != null) { int ItemId = Convert.ToInt32(explorer.Attributes["ItemId"]); string[] aFolder = e.Path.Split('/'); foreach (UploadedFile file in explorer.Upload.UploadedFiles)