string path = Server.MapPath(@"\a.pdf");
FileStream fs = new FileStream(path, FileMode.Create);
fs.Write(buffer, , buffer.Length);
fs.Dispose();
string path = Server.MapPath(@"\a.pdf");
FileStream fs = new FileStream(path, FileMode.Create);
fs.Write(buffer, , buffer.Length);
fs.Dispose();