http://eu.webmatrixhosting.net/sharp_c/forum/MessageInfo.aspx?MessageID=35

解决方案 »

  1.   

    这是一个下载的例子Response.Clear();
    Response.AddHeader("Content-Disposition", "attachment; filename=" + TrgName);
    Response.AddHeader("Content-Length", Filename.Length.ToString());
    Response.ContentType = "application/unknown";
    Response.WriteFile(Filename.FullName);
    Response.End();
      

  2.   

    http://www.codeproject.com/aspnet/FileUpload.asp
      

  3.   

    都是用C#写的呀!有没有用vb写的呀??