I am trying to do :
foreach (JProperty o in obj.Properties())
{
string ke = o.Name.ToString();
string va = o.Value.ToString();
HttpContext.Current.Request.QueryString.Add(ke,va);
}
but it gives me the error "collection is read-only"
HOW can I add values to querystring then ?
Thanks