Reverse function of HttpUtility.ParseQueryString

Posted by Palani on Stack Overflow See other posts from Stack Overflow or by Palani
Published on 2010-04-09T05:30:39Z Indexed on 2010/04/09 5:33 UTC
Read the original article Hit count: 606

Filed under:
|

.Net System.Web.HttpUtility class has following function to parse query string into NameValueCollection.

public static NameValueCollection ParseQueryString(string query);

MSDN: http://msdn.microsoft.com/en-us/library/ms150046.aspx

Is there any function to do reverse , convert NameValueCollection into Query String.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-mvc