ASP.NET静态页面生成及分页的实现

开发 后端
ASP.NET生成静态页面与分页的主要实现原理就是替换模板里的特殊字符。本文介绍一个ASP.NET静态页面生成并分页的程序。

因为公司的产品用asp开发, 前一段时间用asp写了一个生成静态页面并分页的程序,但缘于对.net的热爱,写了这个.net下的生成静态页面并分页的程序。

主要的原理就是替换模板里的特殊字符。

ASP.NET静态页面生成代码 

1、静态模板页面 template.html,主要是定义了一些特殊字符,用来被替换。

  1. < !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">   
  2. < html>   
  3. < head>   
  4. < meta http-equiv="Content-Type" content="text/html; charset=gb2312">   
  5. < title>Title < /title>   
  6. < /head>   
  7. < body>   
  8. < div style="width: 417px; height: 54px" align="center">   
  9. < br />   
  10. Title < /div>   
  11. < div style="width: 417px; height: 8px">   
  12. 浏览 < font color="red"> < script src="http://localhost/.Net/NewsFiles/ClickCount.aspx?NewsId=NewsId"> < /script> < /font>次 Time < /div>   
  13. < div style="width: 417px; height: 100px">   
  14. Content < /div>   
  15. < div style="width: 416px; height: 9px">   
  16. Pager < /div>   
  17. < div style="width: 416px; height: 8px">   
  18. < form id="form1" action="../AddComment.aspx" style="margin:0px">   
  19. < input id="Text1" type="text" /> < Img id="Image1" src="http://www.dwww.cn/UserInfo/CheckCode.aspx"/> < br />   
  20. < textarea id="CommentContent" cols="20" rows="2"> < /textarea>   
  21. < br />   
  22. < input id="NewsId" type="hidden" value="NewsId"/>   
  23. < input id="Button1" type="submit" value="button" />   
  24. < a href="http://www.dwww.cn/News/Display.aspx?NewsId=NewsId">查看更多评论 < /a> < /form>   
  25. < /div>   
  26. < /body>   
  27. < /html>  

ASP.NET静态页面生成:前台

2、前台页面 NewsAdd.aspx,就是一个表单,用来填写新闻的标题和内容。

  1. < %@ Page Language="C#" AutoEventWireup="false" validateRequest="false" CodeFile="NewsAdd.aspx.cs" Inherits="NewsAdd.Admin_AdminPanel_NewsAdd" %>   
  2. < %@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>   
  3. < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
  4.  
  5. < html xmlns="http://www.w3.org/1999/xhtml" >   
  6. < head runat="server">   
  7. < title>添加新闻 < /title>   
  8. < /head>   
  9. < body>   
  10. < form id="form1" runat="server">   
  11. < div>   
  12. < asp:Label ID="Label2" runat="server" Text="标题"> < /asp:Label>   
  13. < asp:TextBox ID="Title" runat="server" Width="325px"> < /asp:TextBox> < br />   
  14. < asp:Label ID="Label1" runat="server" Text="内容"> < /asp:Label>   
  15. < FCKeditorV2:FCKeditor id="Content" basePath="~/FCKeditor/" runat="server" Height="400px" Width="70%"> < /FCKeditorV2:FCKeditor>   
  16. < asp:Button ID="Button1" runat="server" onClick="Button1_Click" Text="Button" />   
  17. < asp:Label ID="Message" runat="server" > < /asp:Label> < /div>   
  18. < /form>   
  19. < /body>   
  20. < /html>  

ASP.NET静态页面生成:后台

3、后台页面 NewsAdd.aspx.cs

  1. using System;   
  2. using System.Data;   
  3. using System.Configuration;   
  4. using System.Collections;   
  5. using System.Web;   
  6. using System.Web.Security;   
  7. using System.Web.UI;   
  8. using System.Web.UI.WebControls;   
  9. using System.Web.UI.WebControls.WebParts;   
  10. using System.Web.UI.HtmlControls;   
  11. using Mysqlserver;   
  12. using System.IO;   
  13. using System.Text;   
  14. namespace NewsAdd   
  15. {   
  16. public partial class Admin_AdminPanel_NewsAdd : System.Web.UI.Page   
  17. {   
  18. protected void Page_Load(object sender, EventArgs e)   
  19. {   
  20.  
  21. }   
  22. protected void Button1_Click(object sender, EventArgs e)   
  23. {   
  24. string strDate = DateTime.Now.ToString("yyMMdd") + "\" + DateTime.Now.ToString("yyyymmddhhmmss");   
  25. string strFileName = strDate + ".shtml";//存储到数据库中   
  26. string strTitle=Request.Form["Title"].ToString().Trim();//接收传过来的标题   
  27. string strContent=Request.Form["Content"].ToString().Trim();//接收传过来的内容   
  28. string[] content = strContent.Split(new Char[] {'|'});//对内容进行拆分,并保存到数组   
  29. int upbound = content.Length;//数组的上限   
  30. SqlServerDataBase db = new SqlServerDataBase();   
  31. bool success = db.Insert("insert into inNews(Title,Content,FilePath)values('" + strTitle + "','" + strContent + "','" + strFileName + "')", null);   
  32. //if (success)   
  33. // Message.Text = "添加成功!";   
  34. /**////////////////////////////创建当前日期的文件夹开始   
  35. string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));//用来生成文件夹   
  36. if (!Directory.Exists(dir))   
  37. {   
  38. Directory.CreateDirectory(dir);   
  39. }   
  40. /**////////////////////////////创建当前日期的文件夹结束   
  41. try   
  42. {   
  43. for (int i = 0; i <  content.Length; i++)   
  44. {   
  45. //string[] newnewContent = new string[4];//定义和html标记数目一致的数组   
  46. StringBuilder strhtml = new StringBuilder();   
  47.  
  48. //创建StreamReader对象   
  49. using (StreamReader sr = new StreamReader(Server.MapPath("../../" + "NewsFiles/") + "\template.html",Encoding.GetEncoding("gb2312")))   
  50. {   
  51. String oneline;   
  52. //读取指定的HTML文件模板   
  53. while ((oneline = sr.ReadLine()) != null)   
  54. {   
  55. strhtml.Append(oneline);   
  56. }   
  57. sr.Close();   
  58. }   
  59.  
  60. //为标记数组赋值   
  61. //SqlServerDataBase db = new SqlServerDataBase();   
  62. DataSet ds = db.Select("select top 1 NewsId from inNews order by NewsId desc", null);//获取id   
  63. string strTable = " < table> < tr> < td>upUrl < /td> < td>Number < /td> < td>downUrl < /td> < /tr> < /table>";//上下页表格,注意此处的upUrl(上一页),Number(页码分页),downUrl(下一页)   
  64. //这三个是用来替换的。   
  65.  
  66. string FilePath="";   
  67. strhtmlstrhtml = strhtml.Replace("Title", strTitle);   
  68. strhtmlstrhtml = strhtml.Replace("NewsId", ds.Tables[0].Rows[0]["NewsId"].ToString());   
  69. strhtmlstrhtml = strhtml.Replace("Time", DateTime.Now.ToString("yyyy/MM/dd"));   
  70. strhtmlstrhtml = strhtml.Replace("Content", content[i]);   
  71. string strNumber = "";//数字分页1,2,3……   
  72. for (int m = 1; m < =upbound; m++)   
  73. {   
  74. if (m == 1)//如果是第一页就显示成这个样子:20070524.shtml而不是20070524_1.shtml   
  75. strNumberstrNumber = strNumber + " ["+" < a href=" + "../" + strDate + ".shtml" + ">" + m + " < /a>"+"] ";   
  76. else   
  77. {   
  78. int n = m - 1;//第三页的连接应该是20070524_2.shtml,以此类推   
  79. strNumberstrNumber = strNumber + " [" +" < a href=" + "../" + strDate + "_" + n + ".shtml" + ">" + m + " < /a>"+"] ";   
  80. }   
  81. }   
  82. if (upbound == 0)//如果没有分页,就直接按日期时间保存   
  83. {   
  84. FilePath = Server.MapPath("../../") + "NewsFiles" + "//" + strDate + ".shtml";   
  85. strhtmlstrhtml = strhtml.Replace("Pager", "");   
  86. }   
  87. else//否则按20070524.shtml、20070524_1.shtml 这种效果保存   
  88. {   
  89. if (i == 0)   
  90. FilePath = Server.MapPath("../../") + "NewsFiles" + "//" + strDate + ".shtml";   
  91. else   
  92. FilePath = Server.MapPath("../../") + "NewsFiles" + "//" + strDate + "_" + i + ".shtml";   
  93.  
  94. if (i == 0)//第一页不显示上一页   
  95. strTablestrTable = strTable.Replace("upUrl", "");   
  96.  
  97. if (i < = 1)//上一页分页   
  98. strTablestrTable = strTable.Replace("upUrl", " < a href=" + "../" + strDate + ".shtml" + ">上一页 < /a>");   
  99. else   
  100. {   
  101. int p = i - 1;   
  102. strTablestrTable = strTable.Replace("upUrl", " < a href=" + "../" + strDate + "_" + p + ".shtml" + ">上一页 < /a>");   
  103. }   
  104.  
  105. if(upbound==1)//如果只有一页,则不显示页码   
  106. //strNumber="";   
  107. strTablestrTable = strTable.Replace("Number", "");   
  108. else   
  109. strTablestrTable = strTable.Replace("Number", strNumber);//页码替换   
  110. /**/////////////////////////   
  111. if(i==upbound-1)//最后一页不显示下一页   
  112. strTablestrTable = strTable.Replace("downUrl", "");   
  113.  
  114. if (i != upbound - 1)//下一页分页   
  115. {   
  116. int q = i + 1;   
  117. strTablestrTable = strTable.Replace("downUrl", " < a href=" + "../" + strDate + "_" + q + ".shtml" + ">下一页 < /a>");   
  118. }   
  119. else   
  120. {   
  121. int j = upbound - 1;   
  122. strTablestrTable = strTable.Replace("downUrl", " < a href=" + "../" + strDate + "_" + j + ".shtml" + ">下一页 < /a>");   
  123. }   
  124.  
  125. strhtmlstrhtml = strhtml.Replace("Pager", strTable);   
  126. }   
  127. //创建文件信息对象--------------------------------------------   
  128. FileInfo finfo = new FileInfo(FilePath);   
  129. //以打开或者写入的形式创建文件流   
  130. using (FileStream fs = finfo.OpenWrite())   
  131. {   
  132. //根据上面创建的文件流创建写数据流   
  133. StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.Default);   
  134. //把新的内容写到创建的HTML页面中   
  135. sw.WriteLine(strhtml);   
  136. sw.Flush();   
  137. sw.Close();   
  138. }   
  139. }   
  140. }   
  141. catch (Exception err)   
  142. {   
  143. //输出异常信息   
  144. Response.Write(err.ToString());   
  145. }   
  146. }   
  147. }   
  148. }  


请不要直接拷贝使用,里面的路径需要更改,但程序绝对没问题,在我本地已经测试通过。

另外在使用时,比如我要把新闻的内容分成4页,就应该这样写:111|222|333|444。

【编辑推荐】

  1. ASP.NET中aspx页面
  2. 浅析ASP.NET的TypeResolver
  3. ASP.NET中定义JavaScriptConverter
  4. 在ASP.NET中替换Sys.Services的方法
  5. 使用ASP.NET AJAX的Profile Service
     
责任编辑:周立方 来源: CSDN博客
相关推荐

2013-04-07 10:42:56

Asp.Net页面周期

2009-07-24 10:53:51

ASP.NET实现静态

2009-08-07 16:57:17

ASP.NET页面生存

2009-08-04 16:05:15

ASP.NET页面生命

2009-07-31 10:47:18

ASP.NET页面生命

2009-08-04 16:50:15

ASP.NET页面生命

2009-08-03 14:18:40

ASP.NET编程模型ASP.NET页面生命

2009-08-04 14:36:00

ASP.NET分页管理

2009-07-28 14:47:18

ASP.NET MVC

2012-08-16 09:38:38

ASP.NET

2009-11-06 09:23:41

ASP.NET高效分页

2009-09-10 09:50:47

ASP.NET MVC

2009-08-24 18:00:52

ASP.NET模板生成

2009-07-22 16:02:39

ASP.NET MVCPagedList

2012-04-23 15:10:18

ASP.NET

2009-08-04 14:23:36

ASP.NET查询分页

2009-08-12 14:10:37

asp.net分页代码

2009-08-12 18:19:46

ASP.NET报表打印

2009-07-20 16:10:31

ASP.NET页面静态

2009-07-23 14:17:41

点赞
收藏

51CTO技术栈公众号