asp.net 利用IHttpModule和IRequiresSessionState控制入口登入開發錯誤解決辦法

暖楓無敵發表於2015-09-21

1、VS專案中新增FilterModule.cs來控制從登陸頁面進入系統,該類程式碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.SessionState;


namespace  VisualStudio
{
    public class FilterModule : IHttpModule, IRequiresSessionState
    {
        public void Dispose()
        {
            
        }

        public void Init(HttpApplication context)
        {
            //原因:這個事件時,Session尚未建立。要先指定型別在判斷位址列是否存在
            //context.BeginRequest += new EventHandler(context_BeginRequest);
            context.AcquireRequestState += (obj, e) =>
            {
                var app = (HttpApplication)obj;
                var url = app.Request.RawUrl;
                //還要先判斷下請求型別
                if (url.IndexOf(".aspx") > 0)
                {
                    //判斷非UserLogin請求且非saas平臺請求 防止進入死迴圈(此網頁包含重定向迴圈)
                    if (url.IndexOf("Login.aspx") < 0 )
                    {
                        if (app.Context.Session["UserLogin"] == null)
                        {
                            string loginURl = "";
                            string virPath = app.Request.ApplicationPath;
                            if (string.IsNullOrEmpty(virPath) || virPath == "/")
                            {
                                loginURl = string.Format("{0}://{1}:{2}/Login.aspx", app.Request.Url.Scheme, app.Request.Url.Host, app.Request.Url.Port);
                            }
                            else
                            {
                                loginURl = string.Format("{0}://{1}:{2}{3}/Login.aspx", app.Request.Url.Scheme, app.Request.Url.Host, app.Request.Url.Port, virPath);
                            }
                            app.Context.Response.Write("<script>alert('您尚未登入或者賬戶資訊已過期,請重新登入!');top.location='" + loginURl + "' ;</script>");
                            app.Context.Response.End();
                        }
                    }
                }
            };
        }
    }
}



Web.config檔案中新增配置節:

<system.web>
    <httpModules>
         <!--重寫IHttpModule類,需要配置的資訊-->
        <add name="FilterModule" type="VisualStudio.FilterModule,VisualStudio" />
    </httpModules>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>


在專案中建立一個Login.aspx和Index.aspx,然後直接執行Index.aspx頁面,會出現下圖錯誤:



解決辦法:

該錯誤提示已經很明顯了:託管管道模式不正確

右鍵專案屬性,找到左側Web選項卡,將伺服器中由原先的“使用本地IIS Web伺服器”換成“使用Visual Studio開發伺服器”,如下圖所示:



===========================================================================

如果覺得對您有幫助,微信掃一掃支援一下:


相關文章