G
Guest
I've got an page used for downloads that acts similarily to the MSFT
downloads.... page displays and refreshes itself which causes a XML file to
be streamed to the client.
The streaming of the file is working fine, however, IE is mucking the the
filename I specify. For example, I'm specifying the filename
"Product.License.lic", but IE displays "Product[1].License.lic". See code
below... ideas?
Response.ContentType = "text/xml";
Response.AddHeader("content-disposition",
"attachment;filename=Product.License.lic");
Response.BinaryWrite(buffer);
Response.End();
downloads.... page displays and refreshes itself which causes a XML file to
be streamed to the client.
The streaming of the file is working fine, however, IE is mucking the the
filename I specify. For example, I'm specifying the filename
"Product.License.lic", but IE displays "Product[1].License.lic". See code
below... ideas?
Response.ContentType = "text/xml";
Response.AddHeader("content-disposition",
"attachment;filename=Product.License.lic");
Response.BinaryWrite(buffer);
Response.End();