就是, 给出一个链接地址就可以了,Response.Redirect("http://...../filename.dat")

解决方案 »

  1.   

    使用Visual C#实现断点续传
    http://www.yesky.com/SoftChannel/72342380468109312/20040326/1781390.shtml
      

  2.   

    文件上传及下载(asp.net) 
    http://dev.csdn.net/develop/article/20/20849.shtm
      

  3.   

    <a href="http://www.sina.com.cn/aa.zip">点击下载</a>
    ???
      

  4.   

    '下载指定文件
        '参数信息: resp        页面输出流 引用变量
        '           strfilename     文件名全路经(例:"d:\文件夹名\文件名.后缀名")
        Sub DownLoad(ByRef resp As HttpResponse, ByVal strFileName As String)
            Dim f As New System.IO.FileInfo(strFileName)
            resp.Clear()
            resp.AddHeader("Content-Disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(f.Name)))
            resp.AddHeader("Content-Length", f.Length.ToString())
            resp.WriteFile(f.FullName)
            resp.End()
        End Sub
      

  5.   

    就直接在连接里面写上要下载的地址就行了吧
    exe,zip等这种IE就会自动下载了楼主是不是有什么特殊要求?!