91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

利用asp.net怎么生成一個靜態頁并添加鏈接

發布時間:2020-12-09 17:50:21 來源:億速云 閱讀:131 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關利用asp.net怎么生成一個靜態頁并添加鏈接,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1.創建一個靜態網頁模板

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<table $htmlformat[0] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0" gcolor="#eeeeee" >
<tr>
<td width="100%" valign="middle" align="left">
<h2>$htmlformat[1]</h2>
<div >$htmlformat[4]</div>
</td>
</tr>
</table>
</body>
</html>

2.在asp.net網頁后臺代碼中替換模板html頁中的標記符

protected void Button1_Click(object sender, EventArgs e)
{
string[] format = new string[5];//定義和htmlyem標記數目一致的數組
StringBuilder htmltext = new StringBuilder();
string templatePath = Server.MapPath("~/html/Template.html");
StreamReader sr = new StreamReader(templatePath);
String line;
while ((line = sr.ReadLine()) != null)
{
htmltext.Append(line);
}
sr.Close();
//---------------------給標記數組賦值------------
format[0] = "background=\"bg.jpg\"";//背景圖片
format[1] = TB_Title.Text;
format[2] = "#990099"; //字體顏色
format[3] = "60px";//文字大小
format[4] = TB_Content.Text;
//----------替換htm里的標記為你想加的內容
for (int i = 0; i < 5; i++)
{
htmltext.Replace("$htmlformat[" + i + "]", format[i]);
}
//----------生成htm文件------------------――
string newfile = Server.MapPath("~/html/"+TB_Title.Text+".html");
StreamWriter sw = new StreamWriter(newfile, false, System.Text.Encoding.GetEncoding("GB2312"));
sw.WriteLine(htmltext);
sw.Flush();
sw.Close();
string newhref="html/" rel="external nofollow" +TB_Title.Text+".html";
Response.Write("<a href=\"" + newhref + "\">" + TB_Title.Text + "</a>");
}

上述就是小編為大家分享的利用asp.net怎么生成一個靜態頁并添加鏈接了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐陵市| 黔西县| 贵阳市| 长海县| 仁化县| 柳州市| 禹州市| 资溪县| 绥棱县| 高碑店市| 左贡县| 曲靖市| 定南县| 甘孜| 龙门县| 综艺| 始兴县| 中卫市| 化州市| 平凉市| 利川市| 迭部县| 谢通门县| 无极县| 汕尾市| 武安市| 会同县| 固安县| 洪洞县| 溧水县| 光泽县| 青州市| 马山县| 邛崃市| 张家界市| 商城县| 罗源县| 明光市| 四平市| 土默特右旗| 山丹县|