中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

利用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

绥芬河市| 乌苏市| 穆棱市| 德庆县| 无极县| 车致| 安多县| 新乡市| 香河县| 台山市| 长治市| 三门县| 凤冈县| 莫力| 扎鲁特旗| 阳春市| 弥渡县| 达孜县| 阿拉尔市| 阳城县| 博湖县| 嘉义县| 岳普湖县| 昔阳县| 专栏| 关岭| 蓬安县| 越西县| 广昌县| 松阳县| 满城县| 雅安市| 南汇区| 临汾市| 潞西市| 庆安县| 子长县| 葫芦岛市| 新和县| 丹江口市| 闻喜县|