asp.net(c#)读取模板并替换模板字段

道理很简单,先创建一个html页面,然后.NET页面读取html页面的内容放到一个字符串里,然后替换字符串里相应的内容,再读出字符串。
       先从数据库中读取相应的内容,读取到datatable中
        string tilte =dt.Rows[0]["title"].ToString(); 
        Encoding encode = Encoding.GetEncoding("gb2312");
        string temp = HttpContext.Current.Server.MapPath("template/webpage.htm");
        StreamReader sr = null;
        StreamWriter sw = null;
        sr =new StreamReader(temp,encode);
        string str = sr.ReadToEnd();
        str = str.Replace("{title}", title);
        Response.Write(str);

本文题目:asp.net(c#)读取模板并替换模板字段
转载来于:http://pwwzsj.com/article/jeghco.html