【原创】asp.net2.0动态生成静页,静态分页实例介绍

 asp.net2.0 动态生成静态页并分页实例
    看了看很多网页中的新闻都是分页的,我想实现这样的功能,看看他们实现的方法,基本是一个新闻分成多个html文件保存,然后用页码连接起来。(不知道我的理解是否正确,如果不正确请大家给我指点一二)
1、从数据库中获取新闻内容。包括新闻标题、内容等。
2、设置页面显示的字符串长度,获取新闻内容的字符长度。做初始设置
3、按页面大小设置的长度截取新闻内容的字符。
4、获取模板页面。在相关的替换字符中用标题、内容等替换字符串。
5、保存新页面到制定目录下面
 
以下是我写的一些代码
     ///
    
/// 此处为获取静态页模板,然后用新数据替换
    
///
    
/// 新闻标题
    
/// 新闻内容
    
/// 页码连接格式
    
/// 静态页名称

     public   void  WriteFile( string  strText,  string  content,  string  page,  string  name)
    
{
        
string path = HttpContext.Current.Server.MapPath("news/get");
        System.Text.Encoding code 
= System.Text.Encoding.GetEncoding("gb2312");
           
        
// 读取模板文件
        string temp = HttpContext.Current.Server.MapPath("news/text.html");
        StreamReader sr 
= null;
        StreamWriter sw 
= null;
        
string str = "";
        
try
        
{
            sr 
= new StreamReader(temp, code);
            str 
= sr.ReadToEnd(); // 读取文件
        }

        
catch (Exception exp)
        
{
            HttpContext.Current.Response.Write(exp.Message);
            HttpContext.Current.Response.End();
            sr.Close();
        }

        
string htmlfilename =name.ToString();
        
// 替换内容
        
// 这时,模板文件已经读入到名称为str的变量中了
        str = str.Replace("$title", strText); //模板页中的$title,即标题
        str = str.Replace("$content", content);//模板页中的$content,即内容
        str = str.Replace("$page", page);//模板页中的$page,即页码连接格式
       
        
// 写文件
        try
        
{
            sw 
= new StreamWriter(path + "/"+htmlfilename, false, code);
            sw.Write(str);
            sw.Flush();
        }

        
catch (Exception ex)
        
{
            HttpContext.Current.Response.Write(ex.Message);
            HttpContext.Current.Response.End();
        }

        
finally
        
{
            sw.Close();
        }
      
    }

}

以下为模板页test.html的代码
<! 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 >
</ head >
< body >
< div  style ="font-size: 20px; text-align: center;" > 文章分页测试 </ div >
< div  style ="font-size: 15px; text-align: center; color: #009966;" > $title </ div >
< div  style ="font-size: 12px; text-align: center; color: darkgray;" > $page </ div >
< div  style ="font-size: 12px;" > $content </ div >


</ body >
</ html >
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值