zoukankan      html  css  js  c++  java
  • 根据原文件生成指定的静态文件

    public class CreateHtmlHelper
        {
           
    public CreateHtmlHelper()
            { }

           
    /// <summary>
           
    /// 根据原文件生成指定的静态文件
           
    /// </summary>
           
    /// <param name="_SourceFileName">原文件【虚拟路径】,如aspx</param>
           
    /// <param name="_TargetFileName">目标静态文件【虚拟路径】,如html</param>
           
    /// <param name="_Ed"></param>
           
    /// <returns></returns>
            public static bool CreateHtml(string _SourceFileName,string _TargetFileName,Encoding _Ed)
            {
               
    return WriteFile(HttpContext.Current.Server.MapPath(_TargetFileName), RenderPage(_SourceFileName), _Ed);
            }

           
    #region 辅助方法

           
    private static string RenderPage(string LocationPage)
            {
                StringBuilder v_Result
    = new StringBuilder();
                HttpContext.Current.Server.Execute(LocationPage,
    new HtmlTextWriter(new StringWriter(v_Result)));
               
    return v_Result.ToString();
            }

           
    private static bool WriteFile(string _FilePath, string _FileValue, Encoding _Encoding)
            {
               
    try
                {
                    StreamWriter sw
    = new StreamWriter(_FilePath, false, _Encoding);
                    sw.Write(_FileValue);
                    sw.Close();
                }
               
    catch
                {
                   
    return false;
                }
               
    return true;
            }

           
    #endregion
        }

    这样调用:
    CreateHtmlHelper.CreateHtml("快照网页", "网页名称", System.Text.Encoding.UTF8);

    魔兽就是毒瘤,大家千万不要玩。
  • 相关阅读:
    word文档中画垂直或水平的线条
    word文档中把几个图形组合在一起
    设计模式
    确认删除的提示的JQuery
    Incorrect column count: expected 1, actual 4 问题
    Spring MVC 中的 controller层的方法的返回值类型
    SpringBoot 项目用户登录
    使用模板异常的解决
    Redis配置到本地以及可视化工具的安装运用
    第034讲:丰富的else语句及简洁的with语句 | 课后测试题及答案
  • 原文地址:https://www.cnblogs.com/tracy/p/1782283.html
Copyright © 2011-2022 走看看