English 中文(简体)
ASP.NET HttpContext 每个用户的独家值
原标题:ASP.NET HttpContext exclusive values for each user

我正在利用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";          
    }

}
最佳回答

这些物品只持续一个单一请求,因此,只要只有一个用户提出这一请求,这些物品就具有范围,并专属于特定用户。

你也许想试试这个

var application = (HttpApplication)sender; 
application.Application["domain"] = "blah"; 
问题回答

那些项目只有在 single page 请求 时才存在。 Context 服务于单一请求。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签