S
Sharon
hi all.
i have a page which lets clients download files.
the file are stored in sql server so this is how its done:
Response.BufferOutput = false;
Response.ContentType = "none";
byte[] fileData = (byte[])drUp["fileData"];
Response.BinaryWrite(fileData);
Response.End();
my problem is that i don't know how to set the file name in the Save As...
dialog
and the page name is automatically put into the dialog.
10x
sharon.
i have a page which lets clients download files.
the file are stored in sql server so this is how its done:
Response.BufferOutput = false;
Response.ContentType = "none";
byte[] fileData = (byte[])drUp["fileData"];
Response.BinaryWrite(fileData);
Response.End();
my problem is that i don't know how to set the file name in the Save As...
dialog
and the page name is automatically put into the dialog.
10x
sharon.