asp.net读取文件_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > asp.net读取文件

asp.net读取文件

 2014/4/21 15:31:26  小小潇洒哥儿  博客园  我要评论(0)
  • 摘要:context.Response.ContentType="text/html";stringfullpath=context.Server.MapPath("hello.htm");context.Response.Write(fullpath);stringcontent=System.IO.File.ReadAllText(fullpath);context.Response.Write(content);
  • 标签:.net ASP.NET 文件 net
context.Response.ContentType = "text/html";
        string fullpath = context.Server.MapPath("hello.htm");
        context.Response.Write(fullpath);
        string content = System.IO.File.ReadAllText(fullpath);
        context.Response.Write(content);
发表评论
用户名: 匿名