Search code examples
c#asp.net.net.net-3.5asmx

The name 'HttpContext' does not exist in the current context


I am trying to convert some vb.net to C#, but I keep getting errors. At the moment, I am getting the error in the title.

The problem line is:

string[] strUserInitials = HttpContext.Current.Request.ServerVariables("LOGON_USER").Split(Convert.ToChar("\\"));

Anyone know why this is happening?

I am working on a webservice (asmx file).

I have the following at the top of the code:

using System.Web;
using System.Web.Services;
using System.Web.Script.Services;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;

Solution

  • You need [] instead of () :

    string[] strUserInitials = System.Web.HttpContext.Current.Request.ServerVariables["LOGON_USER"].Split(System.Convert.ToChar(@"\"));