War einfach nur das Beispiel aus der MSDN... CIAO Michael
> -----Urspr�ngliche Nachricht----- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] Im Auftrag von Lars Selle > Gesendet: Freitag, 21. Februar 2003 10:38 > An: [EMAIL PROTECTED] > Betreff: Antwort: AW: [Asp.net] foreach > > > > warum einfach wenns auch komplizierter geht. ;-) > > > > |---------+----------------------------> > | | "Michael Schwarz"| > | | <[EMAIL PROTECTED]> | > | | Gesendet von: | > | | asp.net-admin@gle| > | | ngamoi.com | > | | | > | | | > | | 21.02.2003 10:33 | > | | Bitte antworten | > | | an asp.net | > | | | > |---------+----------------------------> > > >------------------------------------------------------------- > -------------------------------------------------------------- > -----------------------| > | > > | > | An: <[EMAIL PROTECTED]> > > | > | Kopie: > > | > | Thema: AW: [Asp.net] foreach > > | > > >------------------------------------------------------------- > -------------------------------------------------------------- > -----------------------| > > > > > int loop1, loop2; > NameValueCollection coll; > > // Load ServerVariable collection into NameValueCollection object. > coll=Request.ServerVariables; > // Get names of all keys into a string array. > String[] arr1 = coll.AllKeys; > for (loop1 = 0; loop1 < arr1.Length; loop1++) > { > Response.Write("Key: " + arr1[loop1] + "<br>"); > String[] arr2=coll.GetValues(arr1[loop1]); > for (loop2 = 0; loop2 < arr2.Length; loop2++) { > Response.Write("Value " + loop2 + ": " + arr2[loop2] + "<br>"); > } > } > > > > CIAO > Michael > > > > > -----Urspr�ngliche Nachricht----- > > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > > Im Auftrag von Rene > > > Gesendet: Freitag, 21. Februar 2003 09:56 > > An: asp.net > > Betreff: [Asp.net] foreach > > > > > > Wenn ich alle Werte ermitteln m�chte, die sich aus > > > > Request.ServerVariables > > > > ermitteln lassen, welche Typ hat dann t in der folgenden Schleife? > > > > foreach( .... t in Request.ServerVariables) > > { > > ... > > } > > > > Danke > > > > Rene > > > > > > _______________________________________________ > > Asp.net mailing list > > [EMAIL PROTECTED] > > http://www.glengamoi.com/mailman/listinfo/asp.net > > > > _______________________________________________ > Asp.net mailing list > [EMAIL PROTECTED] > http://www.glengamoi.com/mailman/listinfo/asp.net > > > > > > _______________________________________________ > Asp.net mailing list > [EMAIL PROTECTED] > http://www.glengamoi.com/mailman/listinfo/asp.net > _______________________________________________ Asp.net mailing list [EMAIL PROTECTED] http://www.glengamoi.com/mailman/listinfo/asp.net
