|
 |
asp_web_howto thread: Retrieve registry key values in ASP
Message #1 by "Ahmed Ben Messaoud" <ahmed@c...> on Tue, 15 Oct 2002 13:49:40
|
|
I am looking for a way to retreive all of the Key values in a certain
registry directory. Anyone know of a way to aproaching this??
Message #2 by Greg Griffiths <greg2@s...> on Tue, 15 Oct 2002 20:58:22 +0100
|
|
You can, but ASP will only go for the server's registry, if you want the
local PC's one then you'll need to do some client side stuff and they will
PROBABLY have to run the code themselves due to security settings.
At 13:49 15/10/02 +0000, you wrote:
>I am looking for a way to retreive all of the Key values in a certain
>registry directory. Anyone know of a way to aproaching this??
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
>r-20
Message #3 by "Ahmed Ben Messaoud" <abenmessaoud@l...> on Tue, 15 Oct 2002 19:35:17 -0400
|
|
Ok and how would i go through by checking the servers registry??
-----Original Message-----
From: Greg Griffiths [mailto:greg2@s...]
Sent: October 15, 2002 2:58 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Retrieve registry key values in ASP
You can, but ASP will only go for the server's registry, if you want the
local PC's one then you'll need to do some client side stuff and they
will
PROBABLY have to run the code themselves due to security settings.
At 13:49 15/10/02 +0000, you wrote:
>I am looking for a way to retreive all of the Key values in a certain
>registry directory. Anyone know of a way to aproaching this??
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramm
e
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramm
e
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramm
e
>r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #4 by Shaun Steckley <ssteckley@e...> on Wed, 16 Oct 2002 09:19:15 -0400
|
|
Example:
dim objRegistry
Set objRegistry = Server.CreateObject("WScript.Shell")
strTemp
objRegistry.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\SomeKey\SomeValue")
Set objRegistry = Nothing
Shaun
-----Original Message-----
From: Ahmed Ben Messaoud [mailto:abenmessaoud@l...]
Sent: Tuesday, October 15, 2002 7:35 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Retrieve registry key values in ASP
Ok and how would i go through by checking the servers registry??
-----Original Message-----
From: Greg Griffiths [mailto:greg2@s...]
Sent: October 15, 2002 2:58 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Retrieve registry key values in ASP
You can, but ASP will only go for the server's registry, if you want the
local PC's one then you'll need to do some client side stuff and they
will
PROBABLY have to run the code themselves due to security settings.
At 13:49 15/10/02 +0000, you wrote:
>I am looking for a way to retreive all of the Key values in a certain
>registry directory. Anyone know of a way to aproaching this??
>
>---
>
>Improve your web design skills with these new books from Glasshaus.
>
>Usable Web Menus
>http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramm
e
>r-20
>Constructing Accessible Web Sites
>http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramm
e
>r-20
>Practical JavaScript for the Usable Web
>http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramm
e
>r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
|
|
 |