Files are successfully uploaded in the Local folder but while downloading files get corrupted (dosen't open)
File uploaded successfully !
Code to download(for image file):
Response.Clear();
Response.ContentType = "image/jpeg";
Response.AppendHeader("Content-Disposition", "filename=" + e.CommandArgument + " ");
string filename = e.CommandArgument.ToString();
Response.TransmitFile(Server.MapPath("~/admin/notices/") + filename);
Response.End();