我上传到数据库中的文件,另存为时,显示的是承载页面的文件名,怎样用我上传的文件名
这是页面读数据库表代码,select wd_type,wd_path,wd_name from s_shyupfile
Response.ContentType=ds.Tables[0].Rows[0][0].ToString();
Response.Charset= "GB2312 ";
Response.BinaryWrite((byte[])ds.Tables[0].Rows[0][1]);
怎样在打开显示另存为时显示的是wd_name 的名字,做为文件名。
------解决方案--------------------filename= " + System.Web.HttpUtility.UrlEncode( "文件名 ", System.Text.Encoding.UTF8);