新しいページ image.aspx を作成し、名前空間を追加します
。
System.IO を使用して、
Page_load イベントに次のコードをコピーします。
//4 桁の確認コードを生成します。
文字列 tmp = RndNum(4);
HttpCookie a = new HttpCookie("ImageV",tmp);
Response.Cookies.Add(a);
this.ValidateCode(tmp);
次に
、2 つのメソッドをページに追加します。
{
ビットマップ Img=null;
グラフィックス g=null;
MemoryStream ms=null;
int gheight=VNum.Length*12;
Img=新しいビットマップ(gheight,25);
g=グラフィックス.FromImage(Img);
//背景色
g.クリア(色.白);
//テキストのフォント
Font f=new Font("Arial Black",10);
//文字の色
SolidBrush s=new SolidBrush(Color.Black);
g.DrawString(VNum,f,s,3,3);
ms=新しいMemoryStream();
Img.Save(ms,ImageFormat.Jpeg);
Response.ClearContent();
Response.ContentType="画像/Jpeg";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
Img.Dispose();
Response.End();
プライベート文字列 RndNum(int VcodeNum
)
{
文字列 Vchar="0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,ん、お、ぷ"+
",q,r,s,t,u,v,w,x,y,z";
string[] VcArray=Vchar.Split(new Char [] {','});
文字列 VNum="";
int temp=-1;
ランダム rand=new ランダム();
for(int i=1;i<VcodeNum+1;i++)
{
if(温度!=-1)
{
rand=new Random(i*temp*unchecked((int)DateTime.Now.Ticks));
}
int t=rand.Next(35);
if(temp!=-1&&temp==t)
{
RndNum(VcodeNum) を返します。
}
温度=t;
VNum+=VcArray[t];
}
VNum を返します。
、
イメージ コントロールをページに追加し、名前が ImageButton1 であると仮定して、page_Load イベントに次のコードを記述します。
ImageButton1.ImageUrl = "image.aspx"
image.aspx ページはどこにでも配置できます
が、同じレベルに image.aspx を直接書き込むことができることに注意してください。 ../image.aspx と書くととても便利です。