国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

Asp.Net生成靜態頁面實例代碼_.Net教程

2024-07-10 12:51:58
字體:
來源:轉載
供稿:網友

推薦: 解析防網站登陸被破解的簡單方法
在大多數的基于數據庫的身份認證登陸模塊,大多數的程序員只是用一個簡單的SQL查詢語句來實現,這樣很容易被用戶以簡單的 (1’or’1’=’1) 查詢替換給破解.其實只要稍微的修改一下代碼,便可以防止.具體請參看以下兩個函數的實現: 以下代碼基于C#,數據庫為Acce

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;//數據庫操作類
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 = "添加成功!";
            /**////////////////////////////創建當前日期的文件夾開始
            string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));
            if (!Directory.Exists(dir))
            {
                Directory.CreateDirectory(dir);
            }
            /**////////////////////////////創建當前日期的文件夾結束
            
            string[] newContent = new string[5];//定義和html標記數目一致的數組
            StringBuilder strhtml = new StringBuilder();
            try
            {
                //創建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());
            }
            //為標記數組賦值
            newContent[0] = strTitle;//標題
            newContent[1] = "BackColor=’#cccfff’";//背景色
            newContent[2] = "#ff0000";//字體顏色
            newContent[3] = "100px";//字體大小
            newContent[4] = strContent;//主要內容

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

template.html 代碼
<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程序中實現checkbox全選代碼
程序開發中經常會要用到checkbox的全選,通常情況下是在一些數據綁定控件中如gridview等。下面以repeater為例,在repeater的header和item中放入checkbox控件 asp:RepeaterID=rptGrouprunat=server HeaderTemplate tablewidth=100%cellspacing=1class

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 当雄县| 和田县| 汽车| 沾益县| 若尔盖县| 象州县| 铜梁县| 阳信县| 东海县| 临潭县| 宁都县| 荆门市| 南京市| 维西| 墨脱县| 和田县| 汪清县| 凤城市| 临泽县| 贵港市| 武穴市| 安国市| 宁夏| 南安市| 靖远县| 资溪县| 忻州市| 肇源县| 南澳县| 红安县| 江陵县| 会宁县| 祁阳县| 孟州市| 长葛市| 留坝县| 金寨县| 雅安市| 交城县| 怀柔区| 定陶县|