0
我正在使用ASP.NET MVC 3創建項目。所以現在我需要將需要可用的一些數據傳遞到整個項目中。ASP.NET HttpContext每個用戶的獨佔值
我正在使用IHttpModule並在HttpContext項目中設置值。我的疑問是,我添加到HttpContext項目中的值將是每個用戶會話的獨佔值還是相同?
public class BaseHttpModule : IHttpModule
{
context.BeginRequest += context_BeginRequest;
private void context_BeginRequest(object sender, EventArgs e)
{
var application = (HttpApplication)sender;
var context = application.Context;
context.Items[Key] = "value1";
}
}