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

首頁 > 編程 > .NET > 正文

Asp.net生成圖片驗證碼類

2024-07-10 13:06:07
字體:
來源:轉載
供稿:網友

using system;
using system.data;
using system.configuration;
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 system.drawing;
using system.drawing.imaging;
using system.drawing.text;
public class randpic:system.web.ui.page
{
    /// <summary>
    /// 驗證碼數字
    /// </summary>
    public int num = 0;
    /// <summary>
    /// 圖片寬度
    /// </summary>
    public int imgwidth=60;
    /// <summary>
    /// 圖片高度
    /// </summary>
    public int imgheight=30;
    public randpic()
    {
    }
    /// <summary>
    /// 構造函數
    /// </summary>
    /// <param name="rndnum">驗證碼數字</param>
    public randpic(int rndnum)
    {
        if (rndnum > 0)
        {
            num = rndnum;
        }
    }
    /// <summary>
    /// 生成圖片
    /// </summary>
    public void make()
    {
        bitmap map=new bitmap(imgwidth,imgheight);
        graphics gp = graphics.fromimage(map);
        gp.clear(color.white);
        font ft = new font("arial black", 13);
        pointf point =new pointf(3,3);
        gp.drawstring(num.tostring(), ft, brushes.burlywood, point);
        gp.save();
        map.save(response.outputstream, imageformat.gif);
    }
}
調用頁 showrand.aspx
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 _14base;
public partial class manager_logrnd : randpic
{
    protected void page_load(object sender, eventargs e)
    {
        this.num = 8888;
        httpcookie cookie = new httpcookie("userrnd", rnd.tostring());
        response.cookies.add(cookie);
        this.make();
    }
}

 

 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 平罗县| 廊坊市| 娱乐| 固镇县| 宣武区| 泸州市| 鲜城| 牟定县| 铜川市| 特克斯县| 阳西县| 军事| 兴和县| 大宁县| 霍邱县| 东海县| 嘉善县| 汾阳市| 加查县| 乳源| 通山县| 宜昌市| 大同县| 南宁市| 平湖市| 凤山县| 石家庄市| 蓝山县| 奉贤区| 福泉市| 衢州市| 祁门县| 宿松县| 沙河市| 视频| 新丰县| 荣昌县| 四子王旗| 大埔县| 巫溪县| 广河县|