codice:
using System.Collections.Specialized;
// Request.QueryString è di tipo NameValueCollection
NameValueCollection nvcQS = Request.QueryString;
// ciclo su tutte le chiavi
for (int iKey = 0; iKey < nvcQS.AllKeys.Length; iKey++) {
Response.Write("
Chiave [" + iKey + "]: " + nvcQS.AllKeys[iKey] + "
");
string[] asValue = nvcQS.GetValues(nvcQS.AllKeys[iKey]);
// ciclo su tutti i valori
for (int iValue = 0; iValue < asValue.Length; iValue++) {
Response.Write("Valore [" + iValue + "]: " + asValue[iValue] + "
");
}
}