当前位置:首页 > 服务器 > 正文

asp.net读取服务器上的文件(net 读取文件)

今天给各位分享asp.net读取服务器上的文件的知识,其中也会对net 读取文件进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录一览:

asp.net本地读取服务器上文件

在web.config中设置如下字段,其中db为在SqlServer服务器上运行的数据库的名称connectionStrings

add name="connStr" connectionString="server=192.168.1.254;database=db;uid=admin;pwd=123456"/

/connectionStrings 在cs文件中 string connstr = ConfigurationManager.ConnectionStrings["connStr"].ConnectionString;

asp.net 如何实现将服务器上的文件下载到本地?

给你提供一点代码:

string fileURL = this.Server.MapPath("你要下载的文件路径");//文件路径,可用相对路径

FileInfo fileInfo = new FileInfo(fileURL);

Response.Clear();

Response.AddHeader("content-disposition", "attachment;filename=" +

Server.UrlEncode(fileInfo.Name.ToString()));//文件名

Response.AddHeader("content-length", fileInfo.Length.ToString());//文件大小

Response.ContentType = "application/octet-stream";

Response.ContentEncoding = System.Text.Encoding.Default;

Response.WriteFile(fileURL);

asp.net怎样用资源管理器打开服务器端的文件夹?

如果是要操作服务器端的文件夹可以使用DirectoryInfo对象创建和读取,操作文件可以用FileInfo对象。用资源管理器打开服务器端文件夹,是打算用"explorer.exe"去打开指定目录吗?

如果是这样可以写个批处理,例如要查看系统字体,写下批处理:explorer C:\Windows\Fonts,运行此批处理即可打开指定文件目录。

asp.net读取服务器上的文件的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于net 读取文件、asp.net读取服务器上的文件的信息别忘了在本站进行查找喔。

取消
扫码支持 支付码