首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

学习:生成单个html页面,该如何解决

2013-09-29 
学习:生成单个html页面我想做一个新闻发布系统,在输入新闻标题和内容后生成一个html页面,网上看到很多.net

学习:生成单个html页面
我想做一个新闻发布系统,在输入新闻标题和内容后生成一个html页面,网上看到很多.net生成静态页面的例子,不过大多看不懂,求一个最基本的语句
[解决办法]
你是想生成一个静态页面还是有页面了只是把新闻内容填充进去。
[解决办法]
静态页面的话可以用文本编辑器生成内容。然后把内容添加上 html的 开头结尾标签。保存为文件.html放在项目中,输入地址就可以看。
如果只是填充新闻的话 ,就把文本编辑器编辑的内容保存到数据库。然后加载页面的时候把内容放到页面div内就可以
[解决办法]
所谓的生成静态页面,简单点说,其实就是制作一个有特殊标签的模板,然后生成的时候把标记替换成你的内容。复杂点你制作一套标签,然后通过正则匹配替换的内容,都是一个道理替换,生成


[解决办法]

引用:
我知道是可以通过html模板,替换其中的内容就可以,我只需要替换html中4个地方就行。具体的不知道怎么做。


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.IO;
using System.Text;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

        string templateContent = ReadFile("Template/index.htm");

        templateContent = templateContent.Replace("{content}", "新内容").Replace("{title}", "新标题");

        CreateFile("Index.html", templateContent);

    }


    public static void CreateDir(string dir) {
        if (dir.Length == 0) return;
        string path = System.Web.HttpContext.Current.Request.MapPath("/");
        if (!Directory.Exists(path + dir))
            Directory.CreateDirectory(System.Web.HttpContext.Current.Request.MapPath("/") + dir);
    }

    public static Boolean CreateFile(string dir, string pagestr) {

        System.IO.StreamWriter sw = null;
        try {
            sw = new StreamWriter(HttpContext.Current.Request.MapPath("~/") + "\" + dir, false, Encoding.GetEncoding("GB2312"));
            sw.Write(pagestr);
        }
        catch (Exception ex) {
            sw.Close();
            sw.Dispose();
            throw ex;
        }
        finally {
            sw.Close();
            sw.Dispose();
        }
        return true;
    }

    public static string ReadFile(string tempDir) {

        string path = HttpContext.Current.Server.MapPath("~/");

        path = path + tempDir;

        if (File.Exists(path)) {
            StreamReader sr = new StreamReader(path, Encoding.GetEncoding("gb2312"));
            string str = sr.ReadToEnd();
            sr.Close();
            return str;
        }
        else {
            return "未找到模板文件:" + tempDir;
        }
    }

}


<!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>
   {title}</br>
   {content}
</body>
</html>



  

热点排行