私のプロジェクトには、次のコードを含む Global.asax ファイルがあります。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Data.SqlClient;
using WrapperObjects;
using System.Security.Principal;
namespace Application
{
public class Global : System.Web.HttpApplication
{
private string userLogin = string.Empty;
void Application_Start(object sender, EventArgs e)
{
}
void Application_End(object sender, EventArgs e)
{
}
void Application_Error(object sender, EventArgs e)
{
}
void Session_Start(object sender, EventArgs e)
{
}
void Session_End(object sender, EventArgs e)
{
DBUsers.SetUserStatusOnline("0", userLogin);
Session["curUserRole"] = string.Empty;
Session["curUserLogin"] = string.Empty;
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
HttpApplication app = (HttpApplication)sender;
if (app.Request.IsAuthenticated && User.Identity is FormsIdentity)
{
SqlConnection myConnection = new SqlConnection(DBConnection.GetConnectionString());
SqlCommand myCommand = new SqlCommand("SELECT * FROM Users WHERE login=@login", myConnection);
myCommand.Parameters.AddWithValue("login", app.Context.User.Identity.Name);
myCommand.Connection.Open();
SqlDataReader Reader = myCommand.ExecuteReader();
string role = string.Empty;
while (Reader.Read())
{
userLogin = Reader["login"].ToString();
role = Reader["role"].ToString();
}
if (role != string.Empty)
{
FormsIdentity fi = (FormsIdentity)app.User.Identity;
app.Context.User = new GenericPrincipal(fi, new string[] { role });
}
}
}
}
}
ユーザーがプロジェクト実行機能にログインするprotected void Application_AuthenticateRequest(object sender, EventArgs e)
と、ユーザーログインをプライベート文字列型userLogin
変数に保存しようとします。しかしvoid Session_End(object sender, EventArgs e)
、この関数でセッション終了関数を実行すると、ユーザーのログインステータス「オフライン」でデータベースに保存しようとしますが、変数userLogin
は空です。ユーザーログインをすばやく保存して機能に入れることができる場所はどこvoid Session_End(object sender, EventArgs e)
ですか?