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ù)庫(kù)操作類
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對(duì)象
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)建文件信息對(duì)象
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頁(yè)面中
sw.WriteLine(strhtml);
sw.Flush();
sw.Close();
}
}
catch (Exception err)
{
Response.Write(err.ToString());
}
}
}
}