资源简介
HttpModule实例
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
}
protected void Button1_Click(object sender EventArgs e)
{
ClearCookie(“HttpDemo“);
Server.Transfer(“Login.aspx“);
}
public static void ClearCookie(string cookiename)
{
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookiename];
if (cookie != null)
{
cookie.Expires = DateTime.Now.AddYears(-3);
HttpContext.Current.Response.Cookies.Add(cookie);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-08-15 22:04 HttpDemo\
目录 0 2013-08-15 22:03 HttpDemo\App_Code\
文件 1015 2013-08-15 22:34 HttpDemo\App_Code\LoginModule.cs
文件 1179 2013-08-15 22:59 HttpDemo\App_Code\TestModule.cs
目录 0 2013-08-15 23:50 HttpDemo\App_Data\
文件 566 2013-08-15 22:56 HttpDemo\Default.aspx
文件 750 2013-08-15 22:55 HttpDemo\Default.aspx.cs
文件 962 2013-08-15 20:55 HttpDemo\Global.asax
文件 547 2013-08-15 22:19 HttpDemo\Login.aspx
文件 530 2013-08-15 22:07 HttpDemo\Login.aspx.cs
文件 2059 2013-08-15 22:22 HttpDemo\Web.config
- 上一篇:红外测温程序
- 下一篇:u011541897_7733925.zip
评论
共有 条评论