G
Guest
Hi All,
I want to download two or more file to user machine.
Any one have idea.. How to download multiple file in user machine.
When I tried to download two file using below code.
I am not able to do...plz advise...............
Response.ContentType = "application/vnd.msword";
Response.AddHeader("content-disposition", "attachment;filename=" +
"Download_View.doc");
byte[] l_bytBinaryData;
string l_strBase64string = GetBase64String("C:\\Download_View.doc");
l_bytBinaryData = System.Convert.FromBase64String(l_strBase64string);
Response.BinaryWrite(l_bytBinaryData);
I used this two time, but this does not work and download one file.
Can anyone tell me.. how to proceed.
I want to download two or more file to user machine.
Any one have idea.. How to download multiple file in user machine.
When I tried to download two file using below code.
I am not able to do...plz advise...............
Response.ContentType = "application/vnd.msword";
Response.AddHeader("content-disposition", "attachment;filename=" +
"Download_View.doc");
byte[] l_bytBinaryData;
string l_strBase64string = GetBase64String("C:\\Download_View.doc");
l_bytBinaryData = System.Convert.FromBase64String(l_strBase64string);
Response.BinaryWrite(l_bytBinaryData);
I used this two time, but this does not work and download one file.
Can anyone tell me.. how to proceed.