好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > Asp.Net生成靜態(tài)頁面的實現(xiàn)方法

Asp.Net生成靜態(tài)頁面的實現(xiàn)方法

熱門標(biāo)簽:世紀(jì)佳緣地圖標(biāo)注怎么去掉 外呼系統(tǒng)代理品牌 寧波自動外呼系統(tǒng)代理 巫師3為什么地圖標(biāo)注的財寶沒有 手機地圖標(biāo)注如何刪除 外呼系統(tǒng)費用一年 十堰正規(guī)電銷機器人系統(tǒng) 辦理400電話證件 怎么給超市做地圖標(biāo)注入駐店

復(fù)制代碼 代碼如下:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Mysqlserver;//數(shù)據(jù)庫操作類
using System.IO;
using System.Text;
namespace NewsAdd
{
    public partial class Admin_AdminPanel_NewsAdd : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            string strTitle=Request.Form["Title"].ToString();
            string strContent=Request.Form["Content"].ToString();
            SqlServerDataBase db = new SqlServerDataBase();
            bool success = db.Insert("insert into inNews(Title,Content)values('" + strTitle + "','" + strContent + "')", null);
            //if (success)
               // Message.Text = "添加成功!";
            /**////////////////////////////創(chuàng)建當(dāng)前日期的文件夾開始
            string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));
            if (!Directory.Exists(dir))
            {
                Directory.CreateDirectory(dir);
            }
            /**////////////////////////////創(chuàng)建當(dāng)前日期的文件夾結(jié)束

            string[] newContent = new string[5];//定義和html標(biāo)記數(shù)目一致的數(shù)組
            StringBuilder strhtml = new StringBuilder();
            try
            {
                //創(chuàng)建StreamReader對象
                using (StreamReader sr = new StreamReader(Server.MapPath("../../" + "NewsFiles/") + "/template.html"))
                {
                    String oneline;
                    //讀取指定的HTML文件模板
                    while ((oneline = sr.ReadLine()) != null)
                    {
                        strhtml.Append(oneline);
                    }
                    sr.Close();
                }
            }
            catch (Exception err)
            {
                //輸出異常信息
                Response.Write(err.ToString());
            }
            //為標(biāo)記數(shù)組賦值
            newContent[0] = strTitle;//標(biāo)題
            newContent[1] = "BackColor='#cccfff'";//背景色
            newContent[2] = "#ff0000";//字體顏色
            newContent[3] = "100px";//字體大小
            newContent[4] = strContent;//主要內(nèi)容

            //根據(jù)上面新的內(nèi)容生成html文件
            try
            {
                //指定要生成的HTML文件
                string fname = Server.MapPath("../../" + "NewsFiles/" + DateTime.Now.ToString("yyMMdd")) + "/" + DateTime.Now.ToString("yyyymmddhhmmss") + ".html";
                //替換html模版文件里的標(biāo)記為新的內(nèi)容
                for (int i = 0; i 5; i++)
                {
                    strhtml.Replace("$htmlkey[" + i + "]", newContent[i]);
                }
                //創(chuàng)建文件信息對象
                FileInfo finfo = new FileInfo(fname);
                //以打開或者寫入的形式創(chuàng)建文件流
                using (FileStream fs = finfo.OpenWrite())
                {
                    //根據(jù)上面創(chuàng)建的文件流創(chuàng)建寫數(shù)據(jù)流
                    StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.GetEncoding("GB2312"));
                    //把新的內(nèi)容寫到創(chuàng)建的HTML頁面中
                    sw.WriteLine(strhtml);
                    sw.Flush();
                    sw.Close();
                }
            }
            catch (Exception err)
            {
                Response.Write(err.ToString());
            }
        }
}
}


template.html 代碼
復(fù)制代碼 代碼如下:

html>
       head>
              title>$htmlkey[0]/title>
              meta http-equiv="Content-Type" content="text/html; charset=gb2312">
       /head>
       body >
              table $htmlkey[1] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0"  bgcolor="#eeeeee" style="border:1px solid #000000" mce_style="border:1px solid #000000">
                 tr>
                    td width="100%" valign="middle" align="left">
                        span style="color: $htmlkey[2];font-size: $htmlkey[3]" mce_style="color: $htmlkey[2];font-size: $htmlkey[3]">$htmlkey[4]/span>
                    /td>
                 /tr>
              /table>
       /body>
/html>

您可能感興趣的文章:
  • ASP.NET MVC3關(guān)于生成純靜態(tài)后如何不再走路由直接訪問靜態(tài)頁面
  • 使用ASP.NET模板生成HTML靜態(tài)頁面的五種方案
  • ASP.NET動態(tài)生成靜態(tài)頁面的實例代碼
  • ASP.NET 生成靜態(tài)頁面 實現(xiàn)思路
  • Asp.NET 生成靜態(tài)頁面并分頁的代碼
  • ASP.NET MVC生成靜態(tài)頁面的方法
  • asp.net生成Excel并導(dǎo)出下載五種實現(xiàn)方法
  • asp.net(C#) 生成隨機驗證碼的代碼
  • ASP.net(c#)生成條形碼 code39條碼生成方法
  • asp.net C#生成和解析二維碼的實例代碼
  • Asp.net生成Excel文件并下載(更新:解決使用迅雷下載頁面而不是文件的問題)
  • ASP.NET編程簡單實現(xiàn)生成靜態(tài)頁面的方法【附demo源碼下載】

標(biāo)簽:山西 牡丹江 景德鎮(zhèn) 泰州 嘉興 通遼 天門

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Asp.Net生成靜態(tài)頁面的實現(xiàn)方法》,本文關(guān)鍵詞  Asp.Net,生成,靜態(tài),頁,面的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Asp.Net生成靜態(tài)頁面的實現(xiàn)方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于Asp.Net生成靜態(tài)頁面的實現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 久久精品视频免费播放| 91.com视频| 爱爱动态视频免费视频| 日产无码久久久久久精品红桃 | 韩彩英三级大尺度电影| 98香蕉草草视频在线精品看| 骚虎影院在线观看| 搡老女人老熟女91老熟女综合网| 乙游男主们的yin荡生活| 印度色情一级AA片| 日美女逼逼| 扒开双腿猛进入| 人狗交配小说| 亚洲 欧美 中文 日韩a?v| 一级A片国语普通话对白| 国产一级一片免费播放电影| 秋霞午夜无码一区二区欧美久久| 四虎影视亚洲精品一区二区 | 冰山女神堕落呻吟求欢小说| 麻豆波多野结衣| 老汉在炕上的婬乱生活| 女朋友第一次感觉很松弛怎么办| 色吊丝永久性观看网址| 农里粗汉的共妻嗯啊高h| 原来是美男啊韩剧| 粉嫩人妻午夜无码影视| 91中文字幕| 多人换娶妻俱乐部| 青青草久热精品视频在线观看| 欧美精品1区| 久久97精品国产综合色AV网站| 中文字幕免费在线看| 日本xxxxx成年动漫视频| 美女裸体秘?无遮挡視頻视频裸体so| 少妇被又大又粗又爽A片真人版| 6996电视影片在线看免费| 日本丝袜自慰A片老师| 国产成人在线免费| 一本一道久久a久久精品综合无码| 男女交性全过程免费观看网站| 亚洲老熟女毛茸茸XXX|