⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webutils.cs

📁 这个是网上相册系统的一个架构设计说明
💻 CS
字号:
using System;
using System.Web;
using System.Web.SessionState;

using Utils;
namespace AlbumOL
{
	/// <summary>
	/// WebUtils 的摘要说明。
	/// </summary>
	public sealed class WebUtils
	{
		private WebUtils()
		{
		}

		public static void CheckUser()
		{
			if(HttpContext.Current.Request.Cookies["Principal"] == null)
				HttpContext.Current.Response.Redirect("Login.aspx");
			
			string strPrincipal = HttpContext.Current.Request.Cookies["Principal"].Value;
			Utils.MyPrincipal  principal = Utils.User.CheckUser(strPrincipal) as MyPrincipal;
			if(principal == null)
			{
				HttpContext.Current.Response.Redirect("Login.aspx");
			}
			else
			{
				HttpContext.Current.User = principal;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -