栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

asp.net基于替换模版页的形式生成静态页的方法

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

asp.net基于替换模版页的形式生成静态页的方法

本文实例讲述了asp.net基于替换模版页的形式生成静态页的方法。分享给大家供大家参考,具体如下:

第一步:新建项目,创建一个简单模版页:TemplatePage.htm




  Porschev 生成静态页简单示例


$Porschev[0]$
  • 页标题:$Porschev[0]$
  • 名称:$Porschev[1]$
  • 网址:$Porschev[2]$
  • 时间:$Porschev[3]$
  • 详述:$Porschev[4]$

第二步:创建一个config文件:CreateHtml.config



 
 
 
 
 


第三步:编写生成静态页代码:(添加System.Web引用)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml;
namespace CreateHtmlBLL
{
  public class CreateHtmlBLL
  {
    #region##读取配置文件某节点的个数
    ///
    /// 读取配置文件某节点的个数
    ///
    ///配置文件的路径
    ///要获取的节点
    ///返回节点个数
    private int ReadConfig(string path,string nodeName)
    {
      string absoPath = string.Empty; //绝对路径
      try
      {
 absoPath = System.Web.HttpContext.Current.Server.MapPath(path);
 Xmldocument xd = new Xmldocument();
 xd.Load(absoPath);
 XmlNodeList nodeList = xd.SelectNodes(nodeName); //得到相应节点的集合
 return nodeList.Count;
      }
      catch (Exception)
      {
 throw;
      }
    }
    #endregion
    #region##创建文件夹
    ///
    /// 创建文件夹
    ///
    ///要创建的路径
    public void CreatFolder(string path)
    {
      string absoPath = string.Empty; //绝对路径
      try
      {
 absoPath = System.Web.HttpContext.Current.Server.MapPath(path);
 if (!Directory.Exists(absoPath))
 {
   Directory.CreateDirectory(absoPath);
 }
      }
      catch (Exception)
      {
 throw;
      }
    }
    #endregion
    #region##生成HTML页
    ///
    /// 生成HTML页
    ///
    ///配置文件的路径
    ///配置文件节点名
    ///模版页路径
    ///替换数组
    ///生成HTML路径
    public void CreateHtml(string configPath, String configNodeName, string temPath, string[] arr,string createPath)
    {
      string fileName = string.Empty;     //生成文件名
      string absoCrePath = string.Empty;   //生成页绝对路径
      string absoTemPath = string.Empty;   //模版页的绝对中径
      int nodeCount = 0;    //节点数
      try
      {
 absoCrePath = System.Web.HttpContext.Current.Server.MapPath(createPath);
 absoTemPath = System.Web.HttpContext.Current.Server.MapPath(temPath);
 nodeCount = ReadConfig(configPath, configNodeName);
 FileStream fs = File.Open(absoTemPath, FileMode.Open, FileAccess.Read); //读取模版页
 StreamReader sr = new StreamReader(fs, Encoding.GetEncoding("utf-8"));
 StringBuilder sb = new StringBuilder(sr.ReadToEnd());
 sr.Close();
 sr.Dispose();
 for (int i = 0; i < nodeCount; i++)
 {
   sb.Replace("$Porschev[" + i + "]$", arr[i]);
 }
 CreatFolder(createPath);
 fileName = DateTime.Now.ToFileTime().ToString() + ".html";     //设置文件名(这里可以根据需要变化命名)
 FileStream cfs = File.Create(absoCrePath + "/" + fileName);
 StreamWriter sw = new StreamWriter(cfs, Encoding.GetEncoding("utf-8"));
 sw.Write(sb.ToString());
 sw.Flush();
 sw.Close();
 sw.Dispose();
      }
      catch (Exception)
      {
 throw;
      }
    }
    #endregion
  }
}

第四步:测式生成

protected void Page_Load(object sender, EventArgs e)
{
    CreateHtml();
}
#region##生成静态页
///
/// 生成静态页
///
public void CreateHtml()
{
    try
    {
      string[] arr = new string[5];
      arr[0] = "Porschev 静态页测式";
      arr[1] = "dtan";
      arr[2] = "www.jb51.net";
      arr[3] = DateTime.Today.ToString();
      arr[4] = "欢迎来到考高分网";
      CreateHtmlBLL.CreateHtmlBLL chb = new CreateHtmlBLL.CreateHtmlBLL();
      chb.CreateHtml("CreateHtml.config", "web/website","Template/TemplatePage.htm", arr,"Porschev");
    }
    catch (Exception ex)
    {
      throw ex;
    }
}
#endregion

更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net操作json技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。

希望本文所述对大家asp.net程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/56200.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号