欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

异步 HttpContext.Current实现取值的方法(解决异步Application,Session,Cache...等失效的问题)

程序员文章站 2024-03-08 23:32:42
回答的也多数都是:引用system.web,不要用httpcontext.current.application应该用system.web.httpcontext.curr...
回答的也多数都是:引用system.web,不要用httpcontext.current.application应该用system.web.httpcontext.current.application,后来在网上看到一篇关于system.runtime.remoting.messaging.callcontext这个类的详细介绍才知道,原来httpcontext.current是基于system.runtime.remoting.messaging.callcontext这个类,子线程和异步线程都无法访问到主线程在callcontext中保存的数据。所以在异步执行的过程会就会出现httpcontext.current为null的情况,为了解决子线程能够得到主线程的httpcontext.current数据,需要在异步前面就把httpcontext.current用httpcontext的方式存起来,然后能过参数的形式传递进去,下面看看实现的方法:
复制代码 代码如下:

public httpcontext context
{
get { return httpcontext.current; }
set { value = context; }
}

然后建立一个委托
复制代码 代码如下:

public delegate string delegategetresult(httpcontext context);

下面就是实现过程的编码
复制代码 代码如下:

protected void page_load(object sender, eventargs e)
{
context = httpcontext.current;
delegategetresult dgt = testasync;
iasyncresult iar = dgt.begininvoke(context, null, null);
string result = dgt.endinvoke(iar);
response.write(result);
}

public static string testasync(httpcontext context)
{
if (context.application["booltts"] == null)
{
hashtable ht = (hashtable)context.application["tts"];
if (ht == null)
{
ht = new hashtable();
}

if (ht["a"] == null)
{
ht.add("a", "a");
}

if (ht["b"] == null)
{
ht.add("b", "b");
}

context.application["tts"] = ht;
}

hashtable hts = new hashtable();
hts = (hashtable)context.application["tts"];
if (hts["a"] != null)
{
return "恭喜,中大奖呀";
}
else
{
return "我猜你快中奖了";
}
}