自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

ASP.NET靜態(tài)頁面生成及分頁的實(shí)現(xiàn)

開發(fā) 后端
ASP.NET生成靜態(tài)頁面與分頁的主要實(shí)現(xiàn)原理就是替換模板里的特殊字符。本文介紹一個(gè)ASP.NET靜態(tài)頁面生成并分頁的程序。

因?yàn)楣镜漠a(chǎn)品用asp開發(fā), 前一段時(shí)間用asp寫了一個(gè)生成靜態(tài)頁面并分頁的程序,但緣于對.net的熱愛,寫了這個(gè).net下的生成靜態(tài)頁面并分頁的程序。

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

ASP.NET靜態(tài)頁面生成代碼 

1、靜態(tài)模板頁面 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靜態(tài)頁面生成:前臺(tái)

2、前臺(tái)頁面 NewsAdd.aspx,就是一個(gè)表單,用來填寫新聞的標(biāo)題和內(nèi)容。

  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="標(biāo)題"> < /asp:Label>   
  13. < asp:TextBox ID="Title" runat="server" Width="325px"> < /asp:TextBox> < br />   
  14. < asp:Label ID="Label1" runat="server" Text="內(nèi)容"> < /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靜態(tài)頁面生成:后臺(tái)

3、后臺(tái)頁面 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";//存儲(chǔ)到數(shù)據(jù)庫中   
  26. string strTitle=Request.Form["Title"].ToString().Trim();//接收傳過來的標(biāo)題   
  27. string strContent=Request.Form["Content"].ToString().Trim();//接收傳過來的內(nèi)容   
  28. string[] content = strContent.Split(new Char[] {'|'});//對內(nèi)容進(jìn)行拆分,并保存到數(shù)組   
  29. int upbound = content.Length;//數(shù)組的上限   
  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. /**////////////////////////////創(chuàng)建當(dāng)前日期的文件夾開始   
  35. string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));//用來生成文件夾   
  36. if (!Directory.Exists(dir))   
  37. {   
  38. Directory.CreateDirectory(dir);   
  39. }   
  40. /**////////////////////////////創(chuàng)建當(dāng)前日期的文件夾結(jié)束   
  41. try   
  42. {   
  43. for (int i = 0; i <  content.Length; i++)   
  44. {   
  45. //string[] newnewContent = new string[4];//定義和html標(biāo)記數(shù)目一致的數(shù)組   
  46. StringBuilder strhtml = new StringBuilder();   
  47.  
  48. //創(chuàng)建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. //為標(biāo)記數(shù)組賦值   
  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. //這三個(gè)是用來替換的。   
  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 = "";//數(shù)字分頁1,2,3……   
  72. for (int m = 1; m < =upbound; m++)   
  73. {   
  74. if (m == 1)//如果是第一頁就顯示成這個(gè)樣子:20070524.shtml而不是20070524_1.shtml   
  75. strNumberstrNumber = strNumber + " ["+" < a href=" + "../" + strDate + ".shtml" + ">" + m + " < /a>"+"] ";   
  76. else   
  77. {   
  78. int n = m - 1;//第三頁的連接應(yīng)該是20070524_2.shtml,以此類推   
  79. strNumberstrNumber = strNumber + " [" +" < a href=" + "../" + strDate + "_" + n + ".shtml" + ">" + m + " < /a>"+"] ";   
  80. }   
  81. }   
  82. if (upbound == 0)//如果沒有分頁,就直接按日期時(shí)間保存   
  83. {   
  84. FilePath = Server.MapPath("../../") + "NewsFiles" + "http://" + 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" + "http://" + strDate + ".shtml";   
  91. else   
  92. FilePath = Server.MapPath("../../") + "NewsFiles" + "http://" + 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. //創(chuàng)建文件信息對象--------------------------------------------   
  128. FileInfo finfo = new FileInfo(FilePath);   
  129. //以打開或者寫入的形式創(chuàng)建文件流   
  130. using (FileStream fs = finfo.OpenWrite())   
  131. {   
  132. //根據(jù)上面創(chuàng)建的文件流創(chuàng)建寫數(shù)據(jù)流   
  133. StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.Default);   
  134. //把新的內(nèi)容寫到創(chuàng)建的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. }  


請不要直接拷貝使用,里面的路徑需要更改,但程序絕對沒問題,在我本地已經(jīng)測試通過。

另外在使用時(shí),比如我要把新聞的內(nèi)容分成4頁,就應(yīng)該這樣寫: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
     
責(zé)任編輯:周立方 來源: CSDN博客
相關(guān)推薦

2009-07-24 10:53:51

ASP.NET實(shí)現(xiàn)靜態(tài)

2013-04-07 10:42:56

Asp.Net頁面周期

2009-08-07 16:57:17

ASP.NET頁面生存

2009-08-04 16:05:15

ASP.NET頁面生命

2009-08-04 16:50:15

ASP.NET頁面生命

2009-07-31 10:47:18

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

2009-11-06 09:23:41

ASP.NET高效分頁

2009-09-10 09:50:47

ASP.NET MVC

2012-04-23 15:10:18

ASP.NET

2009-07-22 16:02:39

ASP.NET MVCPagedList

2009-08-24 18:00:52

ASP.NET模板生成

2009-08-12 18:19:46

ASP.NET報(bào)表打印

2009-08-12 14:10:37

asp.net分頁代碼

2009-08-04 14:23:36

ASP.NET查詢分頁

2012-08-16 09:38:38

ASP.NET

2009-07-29 17:26:39

ASP.NET頁面

2009-07-23 14:17:41

點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號