asp.net(c#)读取模板并替换模板字段-成都快上网建站

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#)读取模板并替换模板字段
分享URL:http://kswjz.com/article/jeghco.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流