中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

asp.net基于替換模版頁的形式如何生成靜態頁

發布時間:2021-08-31 09:28:04 來源:億速云 閱讀:115 作者:小新 欄目:開發技術

小編給大家分享一下asp.net基于替換模版頁的形式如何生成靜態頁,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體如下:

第一步:新建項目,創建一個簡單模版頁:TemplatePage.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Porschev 生成靜態頁簡單示例</title>
</head>
<body>
<h2>$Porschev[0]$</h2>
<ul>
<li>頁標題:$Porschev[0]$</li>
<li>名稱:$Porschev[1]$</li>
<li>網址:<a href="$Porschev[2]$" target="_blank">$Porschev[2]$</a></li>
<li>時間:$Porschev[3]$</li>
<li>詳述:$Porschev[4]$</li>
</ul>
</body>
</html>

第二步:創建一個config文件:CreateHtml.config

<?xml version="1.0" encoding="utf-8" ?>
<web>
 <website key="0" value="title"/>
 <website key="1" value="name"/>
 <website key="2" value="url"/>
 <website key="3" value="createDate"/>
 <website key="4" value="desc"/>
</web>

第三步:編寫生成靜態頁代碼:(添加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##讀取配置文件某節點的個數
    ///<summary>
    /// 讀取配置文件某節點的個數
    ///</summary>
    ///<param name="path">配置文件的路徑</param>
    ///<param name="nodeName">要獲取的節點</param>
    ///<returns>返回節點個數</returns>
    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##創建文件夾
    ///<summary>
    /// 創建文件夾
    ///</summary>
    ///<param name="path">要創建的路徑</param>
    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頁
    ///<summary>
    /// 生成HTML頁
    ///</summary>
    ///<param name="configPath">配置文件的路徑</param>
    ///<param name="configNodeName">配置文件節點名</param>
    ///<param name="temPath">模版頁路徑</param>
    ///<param name="arr">替換數組</param>
    ///<param name="createPath">生成HTML路徑</param>
    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##生成靜態頁
///<summary>
/// 生成靜態頁
///</summary>
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基于替換模版頁的形式如何生成靜態頁”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河源市| 新疆| 湖州市| 靖宇县| 长治县| 游戏| 昭平县| 丰城市| 吴堡县| 登封市| 古浪县| 缙云县| 古丈县| 台北县| 绍兴市| 望奎县| 龙海市| 乐安县| 祁阳县| 钟山县| 宜城市| 邵阳县| 长丰县| 兖州市| 德庆县| 衡阳县| 黑河市| 四平市| 黄龙县| 正宁县| 水富县| 枣庄市| 民权县| 两当县| 志丹县| 疏附县| 彝良县| 射洪县| 汉沽区| 茂名市| 黎川县|