I think you have a path to the boot control file
HttpPostedFile httpBrowseFile = FileUpload1.PostedFile; int FileLength = httpBrowseFile.ContentLength; byte[] myData = new byte[FileLength]; httpBrowseFile.InputStream.Read(myData, 0, FileLength); FName = path + FileUpload1.PostedFile.FileName.Substring(FileUpload1.PostedFile.FileName.LastIndexOf('\\') + 1);
source share