我在这做错了什么?我得到一个NullReferenceException。
string outUrl = "http://whatever.com";
HttpContext context = HttpContext.Current;
context.Response.Redirect(outUrl, false);
当我像这样使用新的时候:
HttpContext HC = new HttpContext();
我的方法没有重载。我在VSTA中使用.NET 2。
答案 0 :(得分:0)
HttpContext无法实现,只能由您的应用程序创建。
甚至很难嘲笑(创造一个假的),为什么你需要一个?你的申请类型是什么?