名称“HttpContext”当前上下文中不存在

发布于 2024-11-28 09:18:13 字数 469 浏览 1 评论 0原文

我正在尝试将一些 vb.net 转换为 C#,但我不断收到错误。目前,我收到标题中的错误。

问题线是:

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

有人知道为什么会发生这种情况吗?

我正在开发一个网络服务(asmx 文件)。

我在代码顶部有以下内容:

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

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;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仲春光 2024-12-05 09:18:13

您必须引用 System.Web 并导入名称空间 System.Web:

using System.Web;

我根本不会使用 Convert:

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

You have to reference to System.Web and import the namespace System.Web:

using System.Web;

I would not use Convert at all:

string[] strUserInitials = System.Web.HttpContext.Current.Request.ServerVariables["LOGON_USER"].Split('\\'));
别低头,皇冠会掉 2024-12-05 09:18:13

您需要 [] 而不是 ()

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

You need [] instead of () :

string[] strUserInitials = System.Web.HttpContext.Current.Request.ServerVariables["LOGON_USER"].Split(System.Convert.ToChar(@"\"));
撕心裂肺的伤痛 2024-12-05 09:18:13

using System.Web;using System; 放入源文件中...

put using System.Web; and using System; into the source file...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文