我想在我的 ASP.NET 网站 (WebForms) 中检查会话的值。所以我试图做的是:
// This file called 'Encryptor.cs' and is located under the 'App_Code' folder.
using System;
using System.Data;
using System.Data.OleDb;
using System.Security.Cryptography;
using System.Text;
public static class Encryptor
{
public static bool CheckLoginStatus()
{
bool LoginStatus = false;
if ((string)Session["username"] == null)
{
LoginStatus = true;
}
return LoginStatus;
}
}
我不断收到此消息:“当前上下文中不存在名称 'Session'。” 我如何解决它?