日期:2014-05-17  浏览次数:20420 次

向下载链接传参数,根据参数来生成下载文件的名字,但下载文件的实际名字不变。
下载文件的名字动态改变,但文件实际名字不变。
向下载链接传参数,根据参数来生成下载文件的名字,但下载文件的实际名字不变。
有点像另存为那样的效果。
代码怎么实现呢

------解决方案--------------------
把参数传递进去,
下载的文件地址还是原来的地址
下载下来的文件名称是你传递进去的就是
------解决方案--------------------
用JS好像就可以完成了...

能否贴一下你部分代码...
------解决方案--------------------


参考我之前的下载
C# code
using System;
using System.Collections;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;

namespace Asiastar.NR.Ajax
{
    /// <summary>
    /// $codebehindclassname$ 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class Handler1 : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";

            string id = context.Request["id"].ToString();//获取资源的编号
            System.IO.Stream iStream = null;
            byte[] buffer = new Byte[10000];
            int length;
            long dataToRead;
            NRBLL.File bf = new Asiastar.NRBLL.File();
            Guid guid = new Guid(id);
            if (bf.FN_SerchPathByFileId(guid).Tables[0].Rows[0]["FilePath"] != null)//判断数据库路径是否存在         
            {
                string filepath = bf.FN_SerchPathByFileId(guid).Tables[0].Rows[0]["FilePath"].ToString();//获取资源完整路径                   D:\资源文件\600cc139-14cf-448e-9e50-daa972d35e01.jpg
                string Oidfilename = bf.FN_SerchPathByFileId(guid).Tables[0].Rows[0]["FileNam"].ToString();//旧文件名称
                //string filename = System.IO.Path.GetFileName(filepath);//获取文件名称+后缀名            600cc139-14cf-448e-9e50-daa972d35e01.JPG
                //int index = filepath.IndexOf(".");
                //string filetype = filepath.Substring(index).ToLower();//后缀名
                //string newfilename = Oidfilename;
                //string filepath1 = bf.FN_SerchPathByFileId(guid).Tables[0].Rows[0]["FilePath"].ToString().Substring(0,filepath.Length - 8);
                try
                {
                    string fileName = HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(Oidfilename));//解码(注意这里2层解码)
                    Oidfilename = Oidfilename.Replace("+", "%20");  //将“+”替换成“空格”
                    iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read);
                    dataToRead = iStream.Length;
                    context.Response.ContentType = "application/octet-stream";
                    context.Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(Oidfilename, System.Text.Encoding.UTF8));  //下载的时候下载原来的文件名称
                    while (dataToRead > 0)
                    {
                        if (context.Response.IsClientConnected)
                        {
                            length = iStream.Read(buffer, 0, 10000);
                            context.Response.OutputStream.Write(buffer, 0, length);
                            context.Response.Flush();
                            buffer = new Byte[10000];
                            dataToRead = dataToRead - length;
                        }
                        else
                        {
                            dataToRead = -1;
                        }
                    }

                }
                catch (Exception ex)
                {
                    NR.Error.Log.LogType(ex.ToString());
                }
                finally
                {
                    if (iStream != null)
                    {