91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 9.69MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發布日期: 2023-10-30
  • 語言: C#
  • 標簽: ASP.NET??課設??

資源簡介

不支持修改數據,只支持添加數據,可以自行擴展,不過應付課程設計應該是夠了,使用MySQL數據庫,用戶名root,密碼:admin

資源截圖

代碼片段和文件信息

using?log4net;
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Reflection;
using?System.Web;
using?System.Web.SessionState;

//注意下面的語句一定要加上,指定log4net使用.config文件來讀取配置信息
//如果是WinForm(假定程序為MyDemo.exe,則需要一個MyDemo.exe.config文件)
//如果是WebForm,則從web.config中讀取相關信息
[assembly:?log4net.Config.xmlConfigurator(Watch?=?true)]

namespace?旅行社信息管理網站.filter
{
????public?class?VerifyLogin?:?IHttpModule
????{
????????public?void?Dispose()
????????{
????????????;
????????}

????????public?void?Init(HttpApplication?context)
????????{
????????????context.AcquireRequestState?+=?new?EventHandler(verifyLogin);
????????}

????????///?
????????///?驗證用戶是否登錄
????????///?

????????private?void?verifyLogin(object?source?EventArgs?e)
????????{
????????????HttpApplication?application?=?(HttpApplication)source;
????????????HttpContext?context?=?application.Context;
????????????HttpSessionState?session?=?context.Session;
????????????HttpServerUtility?server?=?context.Server;
????????????HttpRequest?request?=?context.Request;
????????????HttpResponse?response?=?context.Response;
????????????String?contextPath?=?request.ApplicationPath;
????????????//創建日志記錄組件實例
????????????ILog?log?=?log4net.LogManager.GetLogger(Methodbase.GetCurrentMethod().DeclaringType);
????????????//?只過濾網頁
????????????if?(request.Url.ToString().Contains(“.html“)?||?request.Url.ToString().Contains(“.aspx“))
????????????{
????????????????///查詢訪問的頁面是否是登錄頁面,不攔截登錄頁面
????????????????if?(!request.Url.ToString().Contains(“login“))
????????????????{
????????????????????///?檢查是否已經登錄,如果已經登錄則,不攔截,否則重定向到登錄界面
????????????????????///?登錄時Session中的login鍵對應的值為true
????????????????????if?(session?==?null?||?!“true“.Equals((string)session[“login“]))
????????????????????{
????????????????????????log.Info(“有一位用戶沒有登錄并嘗試訪問本站點,已經將其攔截!“);
????????????????????????response.Redirect(“/pages/login.html“);
????????????????????????return;
????????????????????}
????????????????}
????????????}
????????}
????}
}


//ASP.NET過濾器的應用方法介紹

//作者:?字體:[增加?減小]?類型:轉載?時間:2013-06-19?我要評論


//ASP.NET過濾器的應用方法介紹,需要的朋友可以參考一下

//.?.


//在J2EE?Web開發中有過濾器filter,該filter可以對指定的URL訪問進行攔截,并執行過濾器的方法,根據實際應用情況,在過濾器中修改請求的代碼、判斷會話信息,也可以做權限控制,總之這個過濾器是非常有意義的,也可以說是責任鏈設計模式在J2EE中的一個應用。

//??那么在ASP.NET中是否也可以定義這樣的過濾器結構,并在過濾器中進行相應的邏輯操作呢?答案是肯定,本文將告訴你如果編寫一個過濾器,又如何配置到IIS的Web應用之中。

//過程一:如何編寫過濾器

//??編寫過濾器,其實就是編寫一個過濾器的類,也就是編寫一個HttpModule模塊,這個過濾器應該實現IHttpModule基類,并重寫Init方法,給你一個實際的例子如下:

//這是一個PageFilter.cs?


//復制代碼?代碼如下:


//using?System;
//using?System.Web;
//using?System.Web.SessionState;
//using?System.Collections.Generic;
//using?System.Collections;
//using?System.Text;
//using?System.IO;

//public?class?PageFilter:?IHttpModule
//{
//????????public?String?ModuleName
//????????{
//????????????get?{?return?“PageFilter“;?}
//????????}

//????????//在?Init?方法中注冊HttpApplication?
//????????//?通過委托方式注冊事件
//????????public?void?Init(HttpApplic

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件?????304640??2015-12-05?16:01??旅行社信息管理網站\旅行社信息管理網站\bin\log4net.dll

?????文件????1111552??2015-12-05?16:01??旅行社信息管理網站\旅行社信息管理網站\bin\log4net.pdb

?????文件????1533153??2015-12-05?16:01??旅行社信息管理網站\旅行社信息管理網站\bin\log4net.xml

?????文件??????23040??2016-07-06?09:28??旅行社信息管理網站\旅行社信息管理網站\bin\旅行社信息管理網站.dll

?????文件???????2158??2016-07-06?09:29??旅行社信息管理網站\旅行社信息管理網站\bin\旅行社信息管理網站.dll.config

?????文件??????73216??2016-07-06?09:28??旅行社信息管理網站\旅行社信息管理網站\bin\旅行社信息管理網站.pdb

?????文件????????919??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\.bower.json

?????文件????????641??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\bower.json

?????文件????????425??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\CHANGELOG.md

?????文件??????26132??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap-theme.css

?????文件??????47706??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap-theme.css.map

?????文件??????23409??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap-theme.min.css

?????文件???????5532??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap-theme.min.css.map

?????文件?????146082??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap.css

?????文件?????389227??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap.css.map

?????文件?????121299??2016-06-15?22:32??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap.min.css

?????文件??????54416??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\css\bootstrap.min.css.map

?????文件??????20127??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.eot

?????文件?????108738??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.svg

?????文件??????45404??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf

?????文件??????23424??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.woff

?????文件??????18028??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2

?????文件??????68954??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\js\bootstrap.js

?????文件??????36868??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\js\bootstrap.min.js

?????文件????????484??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\dist\js\npm.js

?????文件??????20127??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\fonts\glyphicons-halflings-regular.eot

?????文件?????108738??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\fonts\glyphicons-halflings-regular.svg

?????文件??????45404??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\fonts\glyphicons-halflings-regular.ttf

?????文件??????23424??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\fonts\glyphicons-halflings-regular.woff

?????文件??????18028??2016-06-13?14:01??旅行社信息管理網站\旅行社信息管理網站\bower_components\bootstrap\fonts\glyphicons-halflings-regular.woff2

............此處省略1006個文件信息

評論

共有 條評論