C#生成驗證碼及在頁面上無刷新更換的代碼

b5cw 9年前發布 | 2K 次閱讀 C#

放驗證碼的頁面內添加如下js腳本,這個是刷新驗證碼的方法:

<script language="javascript" type="text/javascript">  
function fresh()  
{  
var randomnum=Math.random();  
var getimagecode=document.getElementById( "codeimage");  
getimagecode.src= "ValidateImage.aspx? "+randomnum;  
}  
</script>  


//該代碼片段來自于: http://www.sharejs.com/codes/csharp/7816
頁面內要放驗證碼的地方(層內,單元格內等)放置如下代碼,這個是驗證碼的圖圖,輸入驗證碼的文本框和調刷新方法的鏈接。
<div><img id="codeimage" src="ValidateImage.aspx?,Math.random()" />  
<asp:TextBox ID="txtValidateCode" runat="server" Width="55px" MaxLength="4"></asp:TextBox>  
<a href="javascript:fresh()" style="font-size: 12px; color: Green">看不清</a></div>  


//該代碼片段來自于: http://www.sharejs.com/codes/csharp/7816
Validateimage.aspx頁面是生成圖片
private void Page_Load(object sender, System.EventArgs e)  
   {  
       this.CreateCheckCodeImage(RndNum());  
   }  
   private string RndNum()  
   {  
       int number;  
       char code;  
       string checkCode = String.Empty;  

       System.Random random = new Random();  

       for (int i = 0; i < 4; i++)  
       {  
           number = random.Next();  
           if (number % 2 == 0)  
               code = (char)('0' + (char)(number % 10));  
           else  
               code = (char)('A' + (char)(number % 26));  
           checkCode += code.ToString();  
       }  
       Response.Cookies.Add(new HttpCookie("yzmcode", checkCode));  
       return checkCode;  
   }  
   private void CreateCheckCodeImage(string checkCode)  
   {  
       if (checkCode == null || checkCode.Trim() == String.Empty)  
           return;  
       System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);  
       Graphics g = Graphics.FromImage(image);  
       try  
       {  
           //生成隨機生成器   
           Random random = new Random();  
           //清空圖片背景色   
           g.Clear(Color.White);  
           //畫圖片的背景噪音線   
           for (int i = 0; i < 20; i++)  
           {  
               int x1 = random.Next(image.Width);  
               int x2 = random.Next(image.Width);  
               int y1 = random.Next(image.Height);  
               int y2 = random.Next(image.Height);  
               g.DrawLine(new Pen(Color.Aqua), x1, y1, x2, y2);  
           }  

           Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));  
           System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.BlueViolet, Color.BlueViolet, 1.2f, true);  
           g.DrawString(checkCode, font, brush, 2, 2);  
           //畫圖片的前景噪音點   
           for (int i = 0; i < 50; i++)  
           {  
               int x = random.Next(image.Width);  
               int y = random.Next(image.Height);  
               image.SetPixel(x, y, Color.FromArgb(random.Next()));  
           }  
           //畫圖片的邊框線   
           g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);  
           System.IO.MemoryStream ms = new System.IO.MemoryStream();  
           image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);  
           Response.ClearContent();  
           Response.ContentType = "image/Gif";  
           Response.BinaryWrite(ms.ToArray());  
       }  
       finally  
       {  
           g.Dispose();  
           image.Dispose();  
       }  
   }   
 
 本文由用戶 b5cw 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!