开发者

Where should we manage session objects in an ASP.NET application?

I am developing a 3-tired ASP.NET C# web application and was wondering where should the sessions be managed. I have a SessionManager class as follows:

public sealed class SessionManager
        {
            priva开发者_如何学JAVAte const string USER = "User";
            private SessionManager()
            {
            }

            public static SessionManager Instance
            {
                get { return _instance; }
            }


            public User User
            {
                get { return HttpContext.Current.Session[USER] as User; }
                set { HttpContext.Current.Session[USER] = value; }
            }
    }

Now should the session information be managed in the Business Logic Layer or should it be managed in the Presentation Layer?


In ASP.NET, Viewstate, Session & Cookies should be managed in the presentation layer.

Cache is probably the only thing you should break loose coupling for...and it should be managed in the Business or Facade layer when you want to cache data.


Normally the Session object should be used only the presentation layer otherwise your're adding web specific logic (presentation) to your business layer. You would be breaking the loose coupling.

If I have to break the loose coupling I would do it for something better than the Session object :-)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜