|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
2003年中微软发布最新版本的ASP.netWebMatrix,对于我们喜欢用Asp.net来编程的朋友实在是个好消息,我也实实在在的将Asp.net更深入的研究了一下,以方便我以后更好的运用它,同时我也讲讲使用它的感受。网页第一种是模版交换:
情况:Microsoft.NETFrameworkSDKv1.1
OS:WindowsServer2003中文版
ASP.Net天生静态HTML页
在Asp中完成的天生静态页用到的FileSystemObject工具!
在.Net中触及此类操纵的是System.IO
以下是程序代码注:此代码非原创!参考他人代码
//天生HTML页
publicstaticboolWriteFile(stringstrText,stringstrContent,stringstrAuthor)
{
stringpath=HttpContext.Current.Server.MapPath("/news/");
Encodingcode=Encoding.GetEncoding("gb2312");
//读取模板文件
stringtemp=HttpContext.Current.Server.MapPath("/news/text.html");
StreamReadersr=null;
StreamWritersw=null;
stringstr="";
try
{
sr=newStreamReader(temp,code);
str=sr.ReadToEnd();//读取文件
}
catch(Exceptionexp)
{
HttpContext.Current.Response.Write(exp.Message);
HttpContext.Current.Response.End();
sr.Close();
}
stringhtmlfilename=DateTime.Now.ToString("yyyyMMddHHmmss")+".html";
//交换内容
//这时候,模板文件已读进到称号为str的变量中了
str=str.Replace("ShowArticle",strText);//模板页中的ShowArticle
str=str.Replace("biaoti",strText);
str=str.Replace("content",strContent);
str=str.Replace("author",strAuthor);
//写文件
try
{
sw=newStreamWriter(path+htmlfilename,false,code);
sw.Write(str);
sw.Flush();
}
catch(Exceptionex)
{
HttpContext.Current.Response.Write(ex.Message);
HttpContext.Current.Response.End();
}
finally
{
sw.Close();
}
returntrue;
此函数放在Conn.CS基类中了
在增加旧事的代码中援用注:工程名为Hover
if(Hover.Conn.WriteFilethis.Title.Text.ToString),this.Content.Text.ToString),this.Author.Text.ToString)))
{
Response.Write("增加乐成");
}
else
{
Response.Write("天生HTML堕落!");
}
模板页Text.html代码
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN">
<HTML>
<HEAD>
<title>ShowArticle</title>
<body>
biaoti
<br>
content<br>
author
</body>
</HTML>
biaoti
<br>
content<br>
author
</body>
</HTML>
提醒增加乐成后会出以以后工夫为文件名的html文件!下面只是把传送过去的几个参数间接写进了HTML文件中,在实践使用中必要先增加数据库,然后再写进HTML文件.
第二种:
WebRequest会见aspx页面,然后猎取Response流,失掉的就是html
privatevoidbutton1_Click(objectsender,System.EventArgse)
{
textBox1.Text=this.GetUrlValue("http://YourUrl");
}
//利用HttpWebRequest取得URL的前往值
publicstringGetUrlValue(stringurl)
{
System.Net.WebRequestHttpWebRequest=System.Net.WebRequest.Create(url);
System.Net.WebResponseHttpWebResponse=HttpWebRequest.GetResponse();
System.IO.StreamReadersr=newSystem.IO.StreamReader(HttpWebResponse.GetResponseStream(),System.Text.Encoding.GetEncoding("GB2312"));
returnsr.ReadToEnd();
}
什么叫数据库怎么样?什么意思?你想单学数据库。(其实变成是我问的) |
|