• 大小: 5KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-15
  • 语言: 其他
  • 标签: HttpModule  

资源简介

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

评论

共有 条评论

相关资源