asp.net 直接另存为

        Response.ContentType = "image/jpeg";
        Response.AppendHeader(
"Content - Disposition""attachment; filename=SailBig.jpg");
        Response.TransmitFile(Server.MapPath(
"~/foxmail6.zip"));
        Response.End();
原文地址:https://www.cnblogs.com/wubiyu/p/1041371.html