vb.net下载 vb net

哪里有vb.net下载的?可以安装成中文vb.net下载的
微软上vb.net下载的vs下载中心
;productID=C0037913-9E11-4A2D-8FD1-0BA441296CBC
vs.net
2003
下载
MSDN
library
CD1
;downid=1
MSDN
library
CD2
;downid=2
MSDN
library
CD3
;downid=3
VISIO
CD1
;downid=4
2005版下载
Visual.Studio..net.2005.简体中文版].rar
;downid=1
vb.net怎么实现点击下载 , 获取文件路径并下载下载,直接通过url读取文件,然后Response.OutputStream.Write()数据
下面提供个下载的静态方法,是C#的,供参考:
/// summary
/// 下载文件
/// /summary
/// param name="fileName"下载的文件名称(包括扩展名)/param
/// param name="filePath"下载文件的绝对路径/param
public static void DownFile(string fileName, string filePath)
{
//打开要下载的文件,并把该文件存放在FileStream中
System.IO.FileStream Reader = System.IO.File.OpenRead(filePath);
//文件传送的剩余字节数:初始值为文件的总大小
long Length = Reader.Length;
HttpContext.Current.Response.Buffer = false;
HttpContext.Current.Response.AddHeader("Connection", "Keep-Alive");
HttpContext.Current.Response.ContentType = "application/octet-stream";
HttpContext.Current.Response.Charset = "utf-8";
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode(fileName));
HttpContext.Current.Response.AddHeader("Content-Length", Length.ToString());
byte[] Buffer = new Byte[10000];//存放欲发送数据的缓冲区
int ByteToRead; //每次实际读取的字节数
while (Length0)
{
//剩余字节数不为零,继续传送
if (HttpContext.Current.Response.IsClientConnected)
{
//客户端浏览器还打开着,继续传送
ByteToRead = Reader.Read(Buffer, 0, 10000);//往缓冲区读入数据
HttpContext.Current.Response.OutputStream.Write(Buffer, 0, ByteToRead);
//把缓冲区的数据写入客户端浏览器
HttpContext.Current.Response.Flush(); //立即写入客户端
Length -= ByteToRead;//剩余字节数减少}
else
{
//客户端浏览器已经断开,阻止继续循环
Length = -1;
}
}//关闭该文件
Reader.Close();
}
QQ:121一九五五121
vb.net软件哪里可以下载vb.net是基于visual
studio的一个产品.可以去vs下载 。或者百度一下vs2005
2008或者2010都可以 。如果你只需要vb的话可以在安装的时候只选择vb.但是下载是全部语言都要下载的 。
vb.net下载文件下载文件的话你要到这个名称空间找都这个函数
System.Net.WebClient.DownloadData(ByVal
String)
As
Byte(
)
--下载资源
DownloadData:
Public
Function
DownloadData(ByVal
address
As
String)
As
Byte(
)
System.Net.WebClient
的成员
摘要:

System.Byte
数组形式通过指定的
URI
下载资源 。
参数:
address:
从中下载数据的
URI 。
返回值:
一个
System.Byte
数组,其中包含下载的资源 。
异常:
System.Net.WebException:
通过组合
System.Net.WebClient.BaseAddress

address
所构成的
URI
无效 。-

-
下载数据时发生错误 。
System.NotSupportedException:
该方法已在多个线程上同时调用 。
System.Net.WebClient.DownloadFile(ByVal
String,
ByVal
String)
--下载文件
DownloadFile:
Public
Sub
DownloadFile(ByVal

推荐阅读