protected void Submit1_ServerClick(object sender, System.EventArgs e) { if ((File1.PostedFile != null) && (File1.PostedFile.ContentLength > 0)) { try { byte[] backupData = null; using (var binaryReader = new System.IO.BinaryReader(File1.PostedFile.InputStream)) { backupData = binaryReader.ReadBytes(File1.PostedFile.ContentLength); } ServiceAccessor.UploadBackup(backupData); succ_msg.Attributes.Remove("hidden"); } catch (Exception ex) { err_msg.Attributes.Remove("hidden"); } } else { warn_msg.Attributes.Remove("hidden"); } }
public static object UploadFile(object file) { byte[] backupData = null; return(ServiceAccessor.UploadBackup(backupData)); }