簡單C#生成靜態及相關讀取模板檔案

iDotNetSpace發表於2010-02-24
        string gh = HttpRuntime.AppDomainAppPath;
        StreamReader reader 
= new StreamReader(gh+"/33.htm", Encoding.GetEncoding("gb2312"));
        
string html = reader.ReadToEnd();
        html 
= html.Replace("<!--123--&gt""好好");
        Response.Write(html);
        StreamWriter sw 
= new StreamWriter(Server.MapPath("311.htm"), false, System.Text.Encoding.GetEncoding("GB2312"));
        sw.WriteLine(html);
        sw.Flush();
        sw.Close();

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-627721/,如需轉載,請註明出處,否則將追究法律責任。

相關文章