asp.net网站防恶意刷新的Cookies与Session解决方法
来源: 阅读:822 次 日期:2015-01-14 15:27:16
温馨提示: 小编为您整理了“asp.net网站防恶意刷新的Cookies与Session解决方法”,方便广大网友查阅!

本文实例讲述了asp.net网站防恶意刷新的Cookies与Session解决方法,是WEB程序设计中非常实用的技巧。分享给大家供大家参考。具体实现方法如下:

Session版实现方法:

public double time;

public const int freetime = 1;//防刷冰冻时间间隔,当前为1秒

#region 防恶意刷新

if (Session.SessionID == null)

{

Response.End();

}

else if (Session["sionid"] == null)

{

Session["sionid"] = Session.SessionID;

}

if (Session["last"] == null)

{

Session["last"] = DateTime.Now;

}

else

{

DateTime thisTime = DateTime.Now;

DateTime lastTime = DateTime.Parse(Session["last"].ToString());

if (Session.SessionID == Session["sionid"].ToString())

Session["last"] = thisTime;

TimeSpan ts = thisTime - lastTime;

time = ts.TotalMilliseconds;

if (time < freetime * 500)

{

warm_prompt();

}

}

#endregion

public void warm_prompt()

{

Response.Write("");

Response.Write("

");

Response.Write("

");

Response.Write("

");

Response.Write("

");

Response.Write("

点击这里刷新此页面
");

Response.End();

}

Cookies版实现方法:

public double time;

public const int freetime = 2;

#region 防恶意刷新

string page;

if (Request.Cookies["page"] == null)

{

page = "";

}

else

{

page = HttpContext.Current.Request.Cookies["page"].Value.ToString(); //获取cookie中存储的url值

}

string strThisPage = HttpContext.Current.Request.Url.PathAndQuery.ToString();//获取当前页地址

DateTime LastTime = DateTime.Now;

if (page.Equals(strThisPage))//如果cookie中的值和当前页相等,那么表示是刷新操作

{

TimeSpan ts = LastTime - DateTime.Parse(HttpContext.Current.Request.Cookies["time"].Value.ToString());

time = ts.Seconds;

if (time < freetime)

{

warm_prompt();

}

}

else

{

//执行操作

Response.Cookies["page"].Value = strThisPage;

Response.Cookies["time"].Value = LastTime.ToString();

}

#endregion

public void warm_prompt()

{

Response.Write("");

Response.Write("

");

Response.Write("

");

Response.Write("

");

Response.Write("

");

Response.Write("

");

Response.Write("");

Response.End();

}

更多信息请查看IT技术专栏

更多信息请查看 网络编程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们| 联系我们| 人才招聘| 网站声明| 网站帮助| 非正式的简要咨询| 简要咨询须知| 加入群交流| 手机站点| 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00) 版权所有:
云南网警报警专用图标
Baidu
map