Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

How to, using ASP.NET

0.00/5 (No votes)
30 Nov 2011 1  
Or you could just loop all environment variables:Dim dictEntry As System.Collections.DictionaryEntryForEach dictEntry In Environment.GetEnvironmentVariables() Response.Write(Key: & (dictEntry.Key.ToString()) & _ Value: & (dictEntry.Value.ToString()))Next

Or you could just loop all environment variables:


VB
Dim dictEntry As System.Collections.DictionaryEntry
ForEach dictEntry In Environment.GetEnvironmentVariables()
    Response.Write("Key: " & (dictEntry.Key.ToString()) & _
        "  Value: " & (dictEntry.Value.ToString()))
Next

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here