我正在利用ASP.NET MVC 3.
我使用 IHtpModule, 并在 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";
}
}