js刷新驗證碼(.net)


js刷新驗證碼:javascript

<a href="javascript:changeImg();" style="color:red; font-size:12px; text-decoration:none;" title="看不清?點擊換一張">
 <img id="imgcode" src="Handler/CheckCodeHandler.ashx?type=login&stamp=1" width="80" height="30" onclick="changeUrl()"/>
</a>


//刷新驗證碼html

function changeImg() {
  document.getElementById("imgcode").src = "Handler/CheckCodeHandler.ashx?type=login&stamp=" + Math.random();
 }


CheckCodeHandler.ashxjava

using System;
using System.Web;
namespace YK.WebSite.Handler
{
    /// <summary>
    /// 用於驗證碼的處理程序
    /// 調用該處理程序時,要加參數type,代表是哪個功能須要的驗證碼
    /// 獲取驗證碼的SessionKey是YK.Website.CheckCode.[type]
    /// </summary>
    public class CheckCodeHandler : IHttpHandler
    {
        public HttpResponse Response
        {
            get
            {
                return HttpContext.Current.Response;
            }
        }
        public HttpRequest Request
        {
            get
            {
                return HttpContext.Current.Request;
            }
        }
        public void Proce***equest(HttpContext context)
        {
            string type = Request.QueryString["type"];
            if (String.IsNullOrWhiteSpace(type)) return;
            Response.Buffer = true;
            Response.ExpiresAbsolute = System.DateTime.Now.AddMilliseconds(0);
            Response.Expires = 0;
            Response.CacheControl = "no-cache";
            Response.AppendHeader("Pragma", "No-Cache");
            string chkCode = String.Empty;
            byte[] bytes = YK.Common.Util.CheckCodeKit.GetChkCodeBytes(ref chkCode);
            YK.Core.Context.Context.SetDataBySession("YK.Website.CheckCode." + type, chkCode);
            Response.ClearContent();
            Response.ContentType = "p_w_picpath/Png";
            Response.BinaryWrite(bytes);
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}


把參數的值寫成隨機數
這樣每次點擊刷新的時候
緩存就不同了
就能夠起到刷新的效果了c#

wKiom1YlrUujatZjAAGfZLm3Ar4391.jpg

相關文章
相關標籤/搜索