M
mamin
Hi,
I need to send a file to a client and then close current window.
My code looks as follows:
Response.ContentType="application/bmp";
Response.AppendHeader("","attachment; filename=\"" + bmpFilePath +
"\"");
Response.WriteFile(bmpFilePath);
Response.Flush();
Response.End();
//now I need to close this window.
Anyone know how to do it?
I need to send a file to a client and then close current window.
My code looks as follows:
Response.ContentType="application/bmp";
Response.AppendHeader("","attachment; filename=\"" + bmpFilePath +
"\"");
Response.WriteFile(bmpFilePath);
Response.Flush();
Response.End();
//now I need to close this window.
Anyone know how to do it?