为什么 System.Web.HttpUtility.UrlEncode 给出的命名空间名称在 Visual C# 2008 中不存在?

发布于 2024-08-03 19:39:26 字数 998 浏览 4 评论 0原文

我正在尝试使用 HttpUtility.UrlEncode() 方法对 URL 进行编码,为什么我得到

命名空间“System.Web”中不存在类型或命名空间名称“HttpUtility”(是否缺少程序集引用?)

错误? 我使用的是 Visual C# 2008 Express 版。

我使用的代码很简单:

using System;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Web;
namespace Lincr
{
    public partial class frmMain : Form
    {
        public frmMain()
        {
            InitializeComponent();
        }

        private void cmdShorten_Click(object sender, EventArgs e)
        {
            WebRequest wrURL;
            Stream objStream;
            wrURL = WebRequest.Create("http://lin.cr?l=" + System.Web.HttpUtility.UrlEncode(txtURL.Text) + "&mode=api&full=1");
            objStream = wrURL.GetResponse().GetResponseStream();
            StreamReader objSReader = new StreamReader(objStream);
            textBox1.Text = objSReader.ReadToEnd().ToString();

        }

    }
}

I'm trying to encode a URL using the HttpUtility.UrlEncode() method, why am I getting

The type or namespace name 'HttpUtility' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

error ?
I'm using Visual C# 2008, Express Edition.

The code I'm using is simplistic:

using System;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Web;
namespace Lincr
{
    public partial class frmMain : Form
    {
        public frmMain()
        {
            InitializeComponent();
        }

        private void cmdShorten_Click(object sender, EventArgs e)
        {
            WebRequest wrURL;
            Stream objStream;
            wrURL = WebRequest.Create("http://lin.cr?l=" + System.Web.HttpUtility.UrlEncode(txtURL.Text) + "&mode=api&full=1");
            objStream = wrURL.GetResponse().GetResponseStream();
            StreamReader objSReader = new StreamReader(objStream);
            textBox1.Text = objSReader.ReadToEnd().ToString();

        }

    }
}

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

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

发布评论

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

评论(4

淡看悲欢离合 2024-08-10 19:39:26

您需要包含对 System.Web 的引用。在解决方案资源管理器中右键单击您的项目,然后选择“添加引用...”。如果您查看 MSDN 您会看到它包含在 System.Web.dll 程序集中,据我所知,新项目中默认情况下不会引用它。

You need to include a reference to System.Web. Right-click your project in the Solution Explorer and choose Add Reference... . If you take a look at MSDN you'll see it's contained in the System.Web.dll assembly, as far as I remember, this is not referenced by default in new projects.

虚拟世界 2024-08-10 19:39:26

以防万一有人偶然发现这一点,正在运行 VS 2010 并且在可用引用中找不到 System.Web...

右键单击该项目并选择属性,如果目标框架设置为“.Net Framework 4 Client”,则更改其为“.Net Framework 4”。

但请注意,这将关闭、重新打开并重建您的项目(此外,如果您有 Web 服务引用,则需要刷新这些项目)

Just in case anyone stumbles across this, is running VS 2010 and cannot find System.Web in the available references...

Right click on the project and select Properties, if the Target Framework is set to ".Net Framework 4 Client" then change it to ".Net Framework 4".

But beware this will close, reopen and rebuild your project (also if you have a web service references these will need to be refreshed)

迟到的我 2024-08-10 19:39:26

对于使用 .NET 4.0 或更高版本的用户,您可以使用 WebUtility.UrlEncode 与客户端配置文件一起使用(不需要 System.Web 程序集引用)。

For people using .NET 4.0 or later, you can use WebUtility.UrlEncode which works with client profile (does not require System.Web assembly reference).

治碍 2024-08-10 19:39:26
  1. 单击菜单中的项目选项
  2. 卡单击
  3. 引用窗口中的添加引用单击框架并检查 System.Web
  1. click on project tab in menu
  2. click on Add References
  3. in References window click on Framework and check the System.Web
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文