请问我在这里做错了什么?我得到一个 NullReferenceException。
string outUrl = "http://whatever.com";
HttpContext context = HttpContext.Current;
context.Response.Redirect(outUrl, false);
当我像这样使用 new 时:
HttpContext HC = new HttpContext();
我得到方法没有重载。我在 VSTA 中使用 .NET 2。