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 ...