I am not sure what you are looking for, but I hope that it will be:
Dim I As Integer
Dim iName, iValue As String
'For I = 0 To Request.Form.Co unt - 1
For I = 0 To Request.ServerV ariables.Count - 1
iName = Request.ServerV ariables.AllKey s(I)
iValue = Request.ServerV ariables.GetVal ues(I)(0)
Response.Write( "<BR>" & iName & " : " & iValue)
Next
"whoopding" <vb@whoopding.c om> schrieb:[color=blue]
> How can I return all the properties in the Request.Browser object using a
> for each...next loop?[/color]
Are you referring to 'Request.UserAg ent' ('HttpWebReques t.UserAgent')?
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Sorry, I meant the Request object Browser property.
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:OuiCmDoEFH A.1348@TK2MSFTN GP14.phx.gbl...[color=blue]
> "whoopding" <vb@whoopding.c om> schrieb:[color=green]
>> How can I return all the properties in the Request.Browser object using a
>> for each...next loop?[/color]
>
> Are you referring to 'Request.UserAg ent' ('HttpWebReques t.UserAgent')?
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>[/color]
Comment