溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

asp.net如何讀取模版并寫入文本文件

發(fā)布時間:2021-07-26 10:09:50 來源:億速云 閱讀:136 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹asp.net如何讀取模版并寫入文本文件,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

項(xiàng)目結(jié)果如下圖:

asp.net如何讀取模版并寫入文本文件

讀寫文件功能在HoverTreePanel項(xiàng)目里面實(shí)現(xiàn),其中HoverTreeTemplate.html文件為模版,程序?qū)x取這個文件的內(nèi)容,然后把模版中的[HoverTreeText/]替換成輸入的內(nèi)容,把替換后的結(jié)果生成index.htm文件,放在HoverTreeWeb項(xiàng)目的根目錄下面。

主要的實(shí)現(xiàn)在GeneratePage.aspx頁面,GeneratePage.aspx.cs的btnHovertree_Click方法中。

界面如下:

asp.net如何讀取模版并寫入文本文件

執(zhí)行后運(yùn)行HoverTreeWeb項(xiàng)目,效果圖如下:

asp.net如何讀取模版并寫入文本文件

btnHovertree_Click方法的代碼:

protected void btnHovertree_Click(object sender, EventArgs e)
 {
  StreamReader h_hovertreeSr = new StreamReader(System.Web.HttpContext.Current.Request.MapPath("HoverTreeTemplate.html"));
  string h_hovertreeTemplate = h_hovertreeSr.ReadToEnd();//讀取模版內(nèi)容
  h_hovertreeSr.Close();
  //當(dāng)前網(wǎng)站根目錄物理路徑
  DirectoryInfo h_dir = new DirectoryInfo(System.Web.HttpContext.Current.Request.PhysicalApplicationPath);  
  //HoverTreeWeb項(xiàng)目根目錄下主頁文件
  string h_path = h_dir.Parent.FullName + "\\HoverTreeWeb\\index.htm";
  StreamWriter h_sw = new StreamWriter(h_path, false, Encoding.UTF8);
  h_sw.Write(h_hovertreeTemplate.Replace("[HoverTreeText/]", tbHovertree.Text));
  h_sw.Close();
  ltlTips.Text = "生成時間:" + DateTime.Now.ToString() + ",請執(zhí)行HoverTreeWeb項(xiàng)目查看效果吧。";
 }

HoverTreeTemplate.html文件的代碼如下:

<!DOCTYPE html>
<html>
<head><meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title>生成的頁面_ASP.NET讀寫文件示例_何問起</title>
 <meta charset="utf-8" />
</head>
<body>
 <div>
 <h4>ASP.NET讀寫文件示例</h4>
 by 何問起
 <div >[HoverTreeText/]</div>
 </div>
</body>
</html>

以上是“asp.net如何讀取模版并寫入文本文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI