国产探花免费观看_亚洲丰满少妇自慰呻吟_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();
    }
}

 

 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 迁西县| 西乌珠穆沁旗| 准格尔旗| 页游| 曲麻莱县| 崇义县| 海晏县| 靖安县| 永昌县| 西宁市| 会理县| 宁明县| 应城市| 通河县| 措美县| 林周县| 郎溪县| 鄂伦春自治旗| 锡林郭勒盟| 万载县| 正宁县| 渭南市| 苍山县| 察隅县| 荣成市| 虎林市| 左贡县| 永新县| 区。| 清水河县| 阳朔县| 巴彦县| 安阳县| 炎陵县| 泰安市| 河源市| 上蔡县| 汪清县| 和静县| 商城县| 娄烦县|