8

.NETには、Path.Combineと同様に、URLの生成を容易にするために使用されるクラスがあるかどうか疑問に思いました。

私が探している機能の例:

string url = ClassName.Combine("http://www.google.com", "index")
            .AddQueryParam("search", "hello world").AddQueryParam("pagenum", 3);
// Result: http://www.google.com/index?search=hello%20world&pagenum=3
4

3 に答える 3

7

UriBuilderあなたはクラスを探していると思います。

ユニフォームリソース識別子(URI)のカスタムコンストラクターを提供し、UriクラスのURIを変更します。

于 2012-11-10T15:18:18.507 に答える
1

これは、2つのサードパーティライブラリにリンクする同様の質問です。

C#URLビルダークラス

Url私の知る限り、.NETには、流暢なインターフェイスでとを構築できる「すぐに使える」ものはありませんQueryString

于 2012-11-10T15:19:08.253 に答える
0
// In webform code behind: 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Specialized;

namespace testURL
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            NameValueCollection queryString = System.Web.HttpUtility.ParseQueryString(string.Empty);

            queryString["firstKey"] = "a";
            queryString["SecondKey"] = "b";

            string url=GenerateURL(queryString); // call function to get the url
        }

        private string GenerateURL(NameValueCollection nvc)
        {
            return "index.aspx?" + string.Join("&", Array.ConvertAll(nvc.AllKeys, key => string.Format("{0}={1}", HttpUtility.UrlEncode(key), HttpUtility.UrlEncode(nvc[key]))));
        }

    }
}


    // To get information to generate URL in MVC please check the following tutorial:
    http://net.tutsplus.com/tutorials/generating-traditional-urls-with-asp-net-mvc3/
于 2012-11-10T19:15:22.903 に答える