Posted on: 2/19/2015 10:50:34 AM | Views : 598

Hi,
I am downloading a file using HttpRespone like
txtName.Text = ""
 HttpResponse response = HttpContext.Current.Response;                 response.Clear();                 response.ClearContent();                 response.ClearHeaders();                 response.BufferOutput = false;                 string zipName = Session["PDfName"] + "_Charges.zip";                 response.ContentType = "application/zip";    &nbs ...

Go to the complete details ...