| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 588 人关注过本帖
标题:下载问题
只看楼主 加入收藏
hadisi0109
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-3-5
收藏
 问题点数:0 回复次数:3 
下载问题
我想做一个下载功能但不知道怎么做?我直接给加连接到下载的路径,但是没有弹出下载的对话框,而是显示无法找到网页.请各位指点一下应该怎么做?最好有代码
搜索更多相关主题的帖子: 对话框 网页 最好 
2008-03-05 10:30
jalonlovesja
Rank: 5Rank: 5
来 自:湖南邵阳
等 级:职业侠客
帖 子:292
专家分:371
注 册:2008-2-19
收藏
得分:0 
if (FileUpload1.PostedFile != null)
       {   
            string nam = FileUpload1.PostedFile.FileName ;
            //取得文件名(抱括路径)里最后一个"."的索引
            int i= nam.LastIndexOf(".");
            //取得文件扩展名
            string newext =nam.Substring(i);
            //这里我自动根据日期和文件大小不同为文件命名,确保文件名不重复
            DateTime now = DateTime.Now;
            string newname = now.DayOfYear.ToString() + FileUpload1.PostedFile.ContentLength.ToString();
            //保存文件到你所要的目录,这里是IIS根目录下的upload目录.你可以改变.
            //注意: 我这里用Server.MapPath()取当前文件的绝对目录.在里""必须用""代替
            FileUpload1.PostedFile.SaveAs(Server.MapPath("upload\\") + newname + newext);
            this.HyperLink1.NavigateUrl  =("upload\\")+newname+newext;
       }
2008-03-05 11:26
hadisi0109
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-3-5
收藏
得分:0 
下载问题
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using
using System.Data.SqlClient;


public partial class download : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        string id = Request.QueryString["id"];
        string sql = "select Accessory from mail where ID = +id";
        SqlConnection conn = Database.GetOpenDatabase();
        SqlCommand cmd = new SqlCommand(sql,conn);
        SqlDataAdapter da = new SqlDataAdapter();
        DataSet ds = new DataSet();
        da.SelectCommand = cmd;
        da.Fill(ds);
        if(ds.Tables[0].Rows.Count>0)
        {
            //string path = ds.Tables[0].Rows[0]["Accessory"].ToString();
            string path = "//download//jianli.doc";
            if (path != null)
            {
                FileDownloadByFullName(path);
            }
        }
    }
    public static void FileDownloadByFullName(string FullFileName)
    {
        FileInfo DownloadFile = new FileInfo(FullFileName);
        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ClearHeaders();
        HttpContext.Current.Response.Buffer = false;
        HttpContext.Current.Response.ContentType = "application/octet-stream";
        HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(DownloadFile.FullName, System.Text.Encoding.ASCII));
        HttpContext.Current.Response.AppendHeader("Content-Length", DownloadFile.Length.ToString());
        HttpContext.Current.Response.WriteFile(DownloadFile.FullName);
        HttpContext.Current.Response.Flush();
        HttpContext.Current.Response.End();
    }  
}
但是老出现找不到路径,请帮忙看看
2008-03-05 16:08
jalonlovesja
Rank: 5Rank: 5
来 自:湖南邵阳
等 级:职业侠客
帖 子:292
专家分:371
注 册:2008-2-19
收藏
得分:0 
把"//"改为"\\"了,我估计是你写反了
2008-03-06 14:02
快速回复:下载问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.041403 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved