就是怎么用C#获取html文件的代码,比如,一个html文件test.html,怎么用代码来实现获取test.html文件中的源代码?将获取的html源代码显示到文本框里进行编辑
9 回答
饮歌长啸
TA贡献1951条经验 获得超3个赞
//FilePath为你的test.html的文件路径
public static string WriteFile(string FilePath)
{
Encoding code = Encoding.GetEncoding("utf-8");
// 读取模板文件
string temp = HttpContext.Current.Server.MapPath(FilePath);
string str = "";
StreamReader sr = null;
try
{
sr = new StreamReader(temp, code);
str = sr.ReadToEnd(); // 读取文件
}
catch (Exception exp)
{
HttpContext.Current.Response.Write(exp.Message);
HttpContext.Current.Response.End();
sr.Close();
}
finally
{
sr.Close();
}
return str;
}
- 9 回答
- 0 关注
- 805 浏览
添加回答
举报
0/150
提交
取消