本文实例讲述了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> <h1>$Porschev[0]$</h1> <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
<"1.0" encoding="utf-8" "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相关内容感兴趣的读者可查看本站专题:《asp.net操作json技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月30日
2024年11月30日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]