asp.net生成静态页面方法示例

发布时间:2020-10-22编辑:脚本学堂
有关asp.net静态页的生成方法,读取模板页、匹配替换标签与生成新html页,包括一个静态页的生成代码,需要的朋友参考下。

asp.net静态页生成方法

一、问题:
把页面按照模板页生成静态页面

二、解决方法:
静态页生成一般是采用匹配与替换的方法。
首先,读取模板页的html内容,然后进行自定义的标签匹配,读取数据库的标题,然后直接进行替换,然后生成html文件。

三,asp.net 静态页面生成代码:
 

复制代码 代码示例:
/// <summary>
/// 解析模板的html中匹配的标签,进行替换(暂时只能用于没有分页的页面)
/// </summary>
/// <param name="html">HTML</param>
/// <returns>返回替换后的HTML</returns>
public static string ReturnHtml(string html)
{
    string newhtml = html;
    newhtml = newhtml.Replace("<#Title#>", "这个是标题替换");//替换标题
    //newhtml = newhtml.Replace("<#Content#>", "这个是内容替换");//替换标题
    newhtml = CreateList(newhtml);
    return newhtml;
}
/// <summary>
/// 读取HTML文件
/// </summary>
/// <param name="temp">html文件的相对路径</param>
/// <returns>返回html</returns>
public static string ReadHtmlFile(string temp)
{
    StreamReader sr = null;
    string str = "";
    try
    {
 sr = new StreamReader(HttpContext.Current.Server.MapPath(temp), code);
 str = sr.ReadToEnd(); // 读取文件
    }
    catch (Exception exp)
    {
 HttpContext.Current.Response.Write(exp.Message);
 HttpContext.Current.Response.End();
    }
    finally
    {
 sr.Dispose();
 sr.Close();
    }
    return str;
}
/// <summary>
/// 生成html文件
/// </summary>
/// <param name="filmname">文件名(带相对路径路径,如:../a.html)</param>
/// <param name="html">html内容(整个)</param>
public static void writeHtml(string filmname, string html)
{
    System.Text.Encoding code = System.Text.Encoding.GetEncoding("utf-8");
    string htmlfilename = HttpContext.Current.Server.MapPath(filmname);
    string str = html;
    StreamWriter sw = null;
    // 写文件
    try
    {
 sw = new StreamWriter(htmlfilename, false, code);
 sw.Write(str);
 sw.Flush();
    }
    catch (Exception ex)
    {
 HttpContext.Current.Response.Write(ex.Message);
 HttpContext.Current.Response.End();
    }
    finally
    {
 sw.Close();
    }
}

代码分析:
读取模板页的源码->匹配替换自定义的标签为实际内容->最后再生成新的html文件。
最后,如果说有些生成分页列表的,也就是把列表页面进行循环生成,有多少页就生成多少个静态页文件。