What am I doing wrong here please? I get a NullReferenceException.
string outUrl = "http://whatever.com";
HttpContext context = HttpContext.Current;
context.Response.Redirect(outUrl, false);
When I use new like this:
HttpContext HC = new HttpContext();
I get No Overload for method. I am working with .NET 2 inside VSTA.