js刷新验证码(.net)-创新互联
js刷新验证码:
为聊城等地区用户提供了全套网页设计制作服务,及聊城网站建设行业解决方案。主营业务为成都做网站、成都网站建设、成都外贸网站建设、聊城网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!//刷新验证码
function changeImg() { document.getElementById("imgcode").src = "Handler/CheckCodeHandler.ashx?type=login&stamp=" + Math.random(); }
CheckCodeHandler.ashx
using System; using System.Web; namespace YK.WebSite.Handler { ////// 用于验证码的处理程序 /// 调用该处理程序时,要加参数type,表明是哪一个功能需要的验证码 /// 获取验证码的SessionKey是YK.Website.CheckCode.[type] /// 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; } } } }
把参数的值写成随机数
这样每次点击刷新的时候
缓存就不一样了
就可以起到刷新的效果了
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
分享标题:js刷新验证码(.net)-创新互联
标题链接:http://pwwzsj.com/article/copedd.html