0

请问我在这里做错了什么?我得到一个 NullReferenceException。

string outUrl = "http://whatever.com";
HttpContext context = HttpContext.Current;
context.Response.Redirect(outUrl, false);

当我像这样使用 new 时:

HttpContext HC = new HttpContext();

我得到方法没有重载。我在 VSTA 中使用 .NET 2。

4

1 回答 1

0

HttpContext 无法实例化,只能由您的应用程序创建。

甚至真的很难模拟(创建一个假的),你为什么需要一个?你的应用类型是什么?

于 2012-05-29T21:52:01.280 回答