您好,登錄后才能下訂單哦!
這篇文章主要講解了“ASP.NET ashx如何實現無刷新頁面生成驗證碼”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“ASP.NET ashx如何實現無刷新頁面生成驗證碼”吧!
現在大部分網站登陸時都會要求輸入驗證碼,在網上也看了一些范例,現在總結一下如何實現無刷新頁面生成驗證碼。
效果圖:
實現方式:
前臺:
<div> <span>Identifying Code:</span> <asp:TextBox ID="txtValidationCode" runat="server" Width="130px" MaxLength="4"></asp:TextBox> <img id="imgYZ" class="code" src="Img.ashx" onclick="this.src=this.src+'?'"/ /> <img src="../images/btn_change.gif" title="Change" class="btn_change" Style="cursor: hand" onclick="ImgChange()" /> </div>
JS:
<script language="javascript" type="text/javascript"> function ImgChange() { var img=document.getElementById("imgYZ"); img.click(); } </script>
ashx:
using System; using System.Web; using CLAIMS.BLL; using System.Data; using System.Configuration; using System.Web.SessionState; using System.Drawing; public class Img : IHttpHandler, IRequiresSessionState { public void ProcessRequest (HttpContext context) { context.Response.ContentType = "image/Jpeg"; string s_random = ""; System.IO.MemoryStream ms = new System.IO.MemoryStream(); s_random = RndNum(4); context.Session["random"] = s_random; s_random = s_random.Substring(0, 1) + " " + s_random.Substring(1, 1) + " " + s_random.Substring(2, 1) + " " + s_random.Substring(3, 1); CreateImage(s_random, ref ms); context.Response.ClearContent(); context.Response.BinaryWrite(ms.ToArray()); context.Response.Flush(); context.Response.End(); } private void CreateImage(string checkCode,ref System.IO.MemoryStream ms) { int iwidth = (int)(checkCode.Length * 18); System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 45); Graphics g = Graphics.FromImage(image); g.Clear(Color.White); //定義顏色 Color[] c = { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Orange, Color.Brown, Color.DarkCyan, Color.Purple }; //定義字體 //string[] font = {"Verdana","Microsoft Sans Serif","Comic Sans MS","Arial","宋體"}; Random rand = new Random(); //隨機輸出噪點 for (int i = 0; i < 50; i++) { int x = rand.Next(image.Width); int y = rand.Next(image.Height); g.DrawRectangle(new Pen(Color.LightGray, 0), x, y, 1, 1); } //輸出不同字體和顏色的驗證碼字符 for (int i = 0; i < checkCode.Length; i++) { int cindex = rand.Next(7); int findex = rand.Next(5); Font font = new System.Drawing.Font("Arial", 24, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)); Brush b = new System.Drawing.SolidBrush(c[cindex]); int ii = 4; if ((i + 1) % 2 == 0) { ii = 2; } g.DrawString(checkCode.Substring(i, 1), font, b, 3 + (i * 12), ii); } //畫一個邊框 g.DrawRectangle(new Pen(Color.Black, 0), 0, 0, image.Width - 1, image.Height - 1); //輸出到瀏覽器 image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); g.Dispose(); image.Dispose(); } public static String RndNum(int VcodeNum) { String Vchar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,W,X,Y,Z"; String[] VcArray = Vchar.Split(','); String VNum = ""; Random random = new Random(); for (int i = 1; i <= VcodeNum; i++) { int iNum = 0; while ((iNum = Convert.ToInt32(VcArray.Length * random.NextDouble())) == VcArray.Length) { iNum = Convert.ToInt32(VcArray.Length * random.NextDouble()); } VNum += VcArray[iNum]; } return VNum; } public bool IsReusable { get { return false; } } }
備注:
onclick="this.src=this.src+'?'"
之前一直不明白為什么要加一個?號,于是去網上搜索,參考一下前輩們的見解:
【這是表示當前圖片鏈接,在當前鏈接值的基礎上添加了一個問號
譬如當前src="check.aspx",點擊后就變成了"check.aspx?",繼續點就會變成"check.aspx?????"
這個問號是沒有實際意義的,它唯一的作用是向IE表明: 圖片鏈接發生了變化,圖片需要刷新.】
【GET:當客戶端要從服務器中讀取文檔時,使用GET方法。GET方法要求服務器將URL定位的資源放在響應報文的數據部分,回送給客戶端。使用GET方法時,請求參數和對應的值附加在URL后面,利用一個問號(“?”)代表URL的結尾與請求參數的開始,傳遞參數長度受限制。例如,/index.jsp?id=100&op=bind。
POST:當客戶端給服務器提供信息較多時可以使用POST方法。POST方法將請求參數封裝在HTTP請求數據中,以名稱/值的形式出現,可以傳輸大量數據。
this.src=this.src+'?'是將this.src原值后加上?,以便向服務器發送一個新的GET方法,從而獲取新的驗證碼】
感謝各位的閱讀,以上就是“ASP.NET ashx如何實現無刷新頁面生成驗證碼”的內容了,經過本文的學習后,相信大家對ASP.NET ashx如何實現無刷新頁面生成驗證碼這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。