/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
private string JoinNvcToQs(NameValueCollection qs) { return string.Join("&", Array.ConvertAll(qs.AllKeys, key => string.Format("{0}={1}", HttpUtility.UrlEncode(key), HttpUtility.UrlEncode(qs[key])))); }