编程语言
首页 > 编程语言> > 完整的C#noob,VS2010,不能使用HttpServerUtility.UrlEncode?

完整的C#noob,VS2010,不能使用HttpServerUtility.UrlEncode?

作者:互联网

所以,我是C#的完整菜鸟.我有一个我需要编码的网址,以便使用urlencoded帖子.

问题是,我发现的每个资源都说使用System.Web.HttpServerUtility.UrlEncode.或者,我已经看到资源告诉我使用System.Web.Util.HttpEncoder().

我添加了对system.web的引用,但是得到了“system.web命名空间中不存在”和“system.web.util命名空间中不存在”错误.

任何提示都会很好!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Web;

namespace WindowsFormsApplication2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string url = HttpUtility.UrlEncode("https://stackoverflow.com/");
            MessageBox.Show(url);
        }
     }
}

解决方法:

您可能正在使用.NET 4 Client Profile,它不包含System.Web.dll – 或者您还没有添加对它的引用.如果进入项目属性,在“应用程序”下选择“.NET Framework 4”作为目标框架,而不是“.NET Framework 4 Client Profile”.然后,您应该能够添加对System.Web程序集的引用.

(请注意,程序集与命名空间不同.程序集引用被添加到项目中,而您通常使用顶部的指令“添加”命名空间到单个文件.您已经获得了系统的using指令.Web命名空间,但这不会帮助您使用HttpServerUtility而不引用System.Web程序集.)

或者,根据您的具体要求,您可以使用Uri.EscapeDataStringUri.EscapeUriString.这两个都可以在客户端配置文件中使用.有这么多不同的方法做到这一点有点烦人 – 挑选正确的方法可能很棘手:(

标签:c,urlencode,url-encoding
来源: https://codeday.me/bug/20190715/1472192.html