mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
12 lines
443 B
C#
12 lines
443 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Specialized;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Orchard.DynamicForms.Helpers {
|
|||
|
public static class NameValueCollectionExtensions {
|
|||
|
public static string ToQueryString(this NameValueCollection nameValues) {
|
|||
|
return String.Join("&", (from string name in nameValues select String.Concat(name, "=", HttpUtility.UrlEncode(nameValues[name]))).ToArray());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|