C#把一段HTML代码保存为.HTML文件

 1  #region 保存文件
 2  public  void SaveFile(StringBuilder strHtml)
 3 {
 4  string tpxxID = Request.QueryString[ " FBWZID "];
 5  try
 6 {
 7 Model.TP_TPXX mTpxx = cTpxx.GetModel(tpxxID);
 8  string f = System.Configuration.ConfigurationManager.AppSettings
 9 
10 [ " SaveFilePath "] +  " files\\ " + 
11 
12 System.Configuration.ConfigurationManager.AppSettings[ " SysCode "]; //web配置文件中配置的地址
13  // 保存地址
14  string FilePath = f +  " \\网站发布\\ " +  string.Format( " {0:yyyy-MM-dd} "
15 
16 DateTime.Now) +  " \\ " + tpxxID +  " \\ " + mTpxx.TPBT +  " .html ";
17 
18 
19  if (!Directory.Exists(Path.GetDirectoryName(FilePath)))
20 {
21  // 创建路径
22  Directory.CreateDirectory(Path.GetDirectoryName(FilePath));
23 }
24 
25  // 创建HTML文件,写入HTML,全路径带扩展名
26  File.Delete(FilePath);
27 File.AppendAllText(FilePath, strHtml.ToString(), Encoding.Default);
28 
29 ClientScript.RegisterClientScriptBlock(GetType(),  " script "" <script 
30 
31 type= ' text/javascript ' defer>alert( ' 发布成功! ');newCommon.WindowClose
32 
33 ();</script> " );
34 
35 }
36  catch (Exception ex)
37 {
38 
39  throw;
40 }
41 }
42  #endregion

转载于:https://www.cnblogs.com/zecVip/p/4429174.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值