您的位置:首页 > 编程语言 > ASP

ASP.NET静态页面生成代码及分页

2011-05-18 11:28 609 查看
ASP.NET静态页面生成代码
1、静态模板页面template.html,主要是定义了一些特殊字符,用来被替换。
1.<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
2.<html>
3.<head>
4.<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
5.<title>Title</title>
6.</head>
7.<body>
8.<divstyle="width:417px;height:54px"align="center">
9.<br/>
10.Title</div>
11.<divstyle="width:417px;height:8px">
12.浏览<fontcolor="red"><scriptsrc="http://localhost/.Net/NewsFiles/ClickCount.aspx?NewsId=NewsId"></script></font>次Time</div>
13.<divstyle="width:417px;height:100px">
14.Content</div>
15.<divstyle="width:416px;height:9px">
16.Pager</div>
17.<divstyle="width:416px;height:8px">
18.<formid="form1"action="../AddComment.aspx"style="margin:0px">
19.<inputid="Text1"type="text"/><Imgid="Image1"src="http://www.dwww.cn/UserInfo/CheckCode.aspx"/><br/>
20.<textareaid="CommentContent"cols="20"rows="2"></textarea>
21.<br/>
22.<inputid="NewsId"type="hidden"value="NewsId"/>
23.<inputid="Button1"type="submit"value="button"/>
24.<ahref="http://www.dwww.cn/News/Display.aspx?NewsId=NewsId">查看更多评论</a></form>
25.</div>
26.</body>
27.</html>
ASP.NET静态页面生成:前台
2、前台页面NewsAdd.aspx,就是一个表单,用来填写新闻的标题和内容。
28.<%@PageLanguage="C#"AutoEventWireup="false"validateRequest="false"CodeFile="NewsAdd.aspx.cs"Inherits="NewsAdd.Admin_AdminPanel_NewsAdd"%>
29.<%@RegisterTagPrefix="FCKeditorV2"Namespace="FredCK.FCKeditorV2"Assembly="FredCK.FCKeditorV2"%>
30.<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
31.
32.<htmlxmlns="http://www.w3.org/1999/xhtml">
33.<headrunat="server">
34.<title>添加新闻</title>
35.</head>
36.<body>
37.<formid="form1"runat="server">
38.<div>
39.<asp:LabelID="Label2"runat="server"Text="标题"></asp:Label>
40.<asp:TextBoxID="Title"runat="server"Width="325px"></asp:TextBox><br/>
41.<asp:LabelID="Label1"runat="server"Text="内容"></asp:Label>
42.<FCKeditorV2:FCKeditorid="Content"basePath="~/FCKeditor/"runat="server"Height="400px"Width="70%"></FCKeditorV2:FCKeditor>
43.<asp:ButtonID="Button1"runat="server"onClick="Button1_Click"Text="Button"/>
44.<asp:LabelID="Message"runat="server"></asp:Label></div>
45.</form>
46.</body>
47.</html>



1.usingSystem;

2.usingSystem.Data;

3.usingSystem.Configuration;

4.usingSystem.Collections;

5.usingSystem.Web;

6.usingSystem.Web.Security;

7.usingSystem.Web.UI;

8.usingSystem.Web.UI.WebControls;

9.usingSystem.Web.UI.WebControls.WebParts;

10.usingSystem.Web.UI.HtmlControls;

11.usingMysqlserver;

12.usingSystem.IO;

13.usingSystem.Text;

14.namespaceNewsAdd

15.{

16.publicpartialclassAdmin_AdminPanel_NewsAdd:System.Web.UI.Page

17.{

18.protectedvoidPage_Load(objectsender,EventArgse)

19.{

20.

21.}

22.protectedvoidButton1_Click(objectsender,EventArgse)

23.{

24.stringstrDate=DateTime.Now.ToString("yyMMdd")+"/"+DateTime.Now.ToString("yyyymmddhhmmss");

25.stringstrFileName=strDate+".shtml";//存储到数据库中

26.stringstrTitle=Request.Form["Title"].ToString().Trim();//接收传过来的标题

27.stringstrContent=Request.Form["Content"].ToString().Trim();//接收传过来的内容

28.string[]content=strContent.Split(newChar[]{'|'});//对内容进行拆分,并保存到数组

29.intupbound=content.Length;//数组的上限

30.SqlServerDataBasedb=newSqlServerDataBase();

31.boolsuccess=db.Insert("insertintoinNews(Title,Content,FilePath)values('"+strTitle+"','"+strContent+"','"+strFileName+"')",null);

32.//if(success)

33.//Message.Text="添加成功!";

34./**////////////////////////////创建当前日期的文件夹开始

35.stringdir=Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));//用来生成文件夹

36.if(!Directory.Exists(dir))

37.{

38.Directory.CreateDirectory(dir);

39.}

40./**////////////////////////////创建当前日期的文件夹结束

41.try

42.{

43.for(inti=0;i<content.Length;i++)

44.{

45.//string[]newnewContent=newstring[4];//定义和html标记数目一致的数组

46.StringBuilderstrhtml=newStringBuilder();

47.

48.//创建StreamReader对象

49.using(StreamReadersr=newStreamReader(Server.MapPath("../../"+"NewsFiles/")+"/template.html",Encoding.GetEncoding("gb2312")))

50.{

51.Stringoneline;

52.//读取指定的HTML文件模板

53.while((oneline=sr.ReadLine())!=null)

54.{

55.strhtml.Append(oneline);

56.}

57.sr.Close();

58.}

59.

60.//为标记数组赋值

61.//SqlServerDataBasedb=newSqlServerDataBase();

62.DataSetds=db.Select("selecttop1NewsIdfrominNewsorderbyNewsIddesc",null);//获取id

63.stringstrTable="<table><tr><td>upUrl</td><td>Number</td><td>downUrl</td></tr></table>";//上下页表格,注意此处的upUrl(上一页),Number(页码分页),downUrl(下一页)

64.//这三个是用来替换的。

65.

66.stringFilePath="";

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.stringstrNumber="";//数字分页1,2,3……

72.for(intm=1;m<=upbound;m++)

73.{

74.if(m==1)//如果是第一页就显示成这个样子:20070524.shtml而不是20070524_1.shtml

75.strNumberstrNumber=strNumber+"["+"<ahref="+"../"+strDate+".shtml"+">"+m+"</a>"+"]";

76.else

77.{

78.intn=m-1;//第三页的连接应该是20070524_2.shtml,以此类推

79.strNumberstrNumber=strNumber+"["+"<ahref="+"../"+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","<ahref="+"../"+strDate+".shtml"+">上一页</a>");

99.else

100.{

101.intp=i-1;

102.strTablestrTable=strTable.Replace("upUrl","<ahref="+"../"+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.intq=i+1;

117.strTablestrTable=strTable.Replace("downUrl","<ahref="+"../"+strDate+"_"+q+".shtml"+">下一页</a>");

118.}

119.else

120.{

121.intj=upbound-1;

122.strTablestrTable=strTable.Replace("downUrl","<ahref="+"../"+strDate+"_"+j+".shtml"+">下一页</a>");

123.}

124.

125.strhtmlstrhtml=strhtml.Replace("Pager",strTable);

126.}

127.//创建文件信息对象--------------------------------------------

128.FileInfofinfo=newFileInfo(FilePath);

129.//以打开或者写入的形式创建文件流

130.using(FileStreamfs=finfo.OpenWrite())

131.{

132.//根据上面创建的文件流创建写数据流

133.StreamWritersw=newStreamWriter(fs,System.Text.Encoding.Default);

134.//把新的内容写到创建的HTML页面中

135.sw.WriteLine(strhtml);

136.sw.Flush();

137.sw.Close();

138.}

139.}

140.}

141.catch(Exceptionerr)

142.{

143.//输出异常信息

144.Response.Write(err.ToString());

145.}

146.}

147.}

148.}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: