以前听我朋友说起php的模板引擎技术的时候似懂非懂哪时感觉真的很强,一直在想asp.net有这种技术吗?我不知道我的理解是不是对的.其实asp.net的模板引擎技术就是先建好一个静态的html页面我们称它为模板页,你如果有不同形式的页面哪就得建立不同的静态模板页,然后在后台用文件操作往这个文件里写东西然后在把这个模板页另存到一个静态页面的目录,不好意思可能我的理解太俗,如果有更好的理解和想法可以在apolov发文章告诉我谢谢。现在我附加一下代码 default.aspx这个页面只有几个textbox控件和两个按妞控件
<%@ page language="c#" autoeventwireup="true" codebehind="default.aspx.cs" validaterequest="false" inherits="tohtml._default" %>
<!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 runat="server">
<title>asp.net生成静态页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
标题:<asp:textbox id="txttitle" runat="server" width="352px"></asp:textbox><br />
内容:<asp:textbox id="txtcontent" runat="server" height="179px" textmode="multiline"
width="350px"></asp:textbox><br />
<br />
<asp:button id="button1" runat="server" onclick="button1_click" text="根据模板生成" /><br />
<br />
<br />
url地址:<asp:textbox id="txturl" runat="server" tooltip="请确认url地址的存在" width="359px"></asp:textbox>
<br />
<br />
<asp:button id="button2" runat="server" text="根据url地址生成" onclick="button2_click" /></div>
</form>
</body>
</html>
要准备的模板页代码,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> $title$ 生成静态页title>
<style type="text/css">
<!--
.style1 {
font-size: 16px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<br />
<br />
<table width="100%" border="0" bgcolor="#339900">
<tr>
<td height="34" align="center" bgcolor="#ffffff"><span class="style1">$title$ </span></td>
</tr>
<tr>
<td height="42" bgcolor="#ffffff"><br />
<br />
内容:$content$ </td>
</tr>
</table>
</body>
</html>
后台生成静态页面的代码default.aspx.cs主要用到了文件操做
sing system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.net;
using system.text;
using system.io;
namespace tohtml
{
//51aspx.com生成静态页演示文件,转载请保留该信息
public partial class _default : system.web.ui.page
{
protected void page_load(object sender, eventargs e)
{
}
//根据模板生成,保持在html文件夹中(部分源码搜集于网络)
protected void button1_click(object sender, eventargs e)
{
//源码是替换掉模板中的特征字符
string mbpath =server.mappath("template.htm");
encoding code = encoding.getencoding("gb2312");
streamreader sr = null;
streamwriter sw = null;
string str = null;
//读取
try
{
sr = new streamreader(mbpath, code);
str = sr.readtoend();
}
catch (exception ex)
{
throw ex;
}
finally
{
sr.close();
}
//根据时间自动重命名,扩展名也可以自行修改
string filename = datetime.now.tostring("yyyymmddhhmmss") + ".htm";
str = str.replace("$title$", txttitle.text);//替换title
str = str.replace("$content$", txtcontent.text);//替换content
//生成静态文件
try
{
sw = new streamwriter(server.mappath("htm/") + filename, false, code);
sw.write(str);
sw.flush();
}
catch (exception ex)
{
throw ex;
}
finally
{
sw.close();
response.write("恭喜<a href=htm/"+filename+" target=_blank>"+filename+"</a>已经生成,保存在htm文件夹下!");
}
}
//根据url地址生成静态页保持
protected void button2_click(object sender, eventargs e)
{
encoding code = encoding.getencoding("utf-8");
streamreader sr = null;
streamwriter sw = null;
string str = null;
//读取远程路径
webrequest temp = webrequest.create(txturl.text.trim());
webresponse mytemp = temp.getresponse();
sr = new streamreader(mytemp.getresponsestream(), code);
//读取
try
{
sr = new streamreader(mytemp.getresponsestream(), code);
str = sr.readtoend();
}
catch (exception ex)
{
throw ex;
}
finally
{
sr.close();
}
string filename = datetime.now.tostring("yyyymmddhhmmss") + ".html";
//写入
try
{
sw = new streamwriter(server.mappath("htm/") + filename, false, code);
sw.write(str);
sw.flush();
}
catch (exception ex)
{
throw ex;
}
finally
{
sw.close();
response.write("恭喜<a href=htm/" + filename + " target=_blank>" + filename + "</a>已经生成,保存在htm文件夹下!");
}
}
}
}