Is it possible to read registry settings from a client machine using asp.NET

I want to develop an ASP.NET application that will return HOSTUUID from the registry of client machines. It is possible to read the HOSTUUID from the client machine. If this

1) are there any rights we need?

2) How to do it?

Please, help.

0
source share
4 answers

ASP.NET code runs on a web server and has absolutely no way to access your client computer — neither its disks, nor its registry, or anything else on your local client machine.

No, you cannot do this.

Mark

+5
source

No , this is not possible.

ASP.Net - ( , , , ).
, javascript , , , .

+1

VB6 ActiveX.

.

:

  • IE
  • ( )

, , , . .

? , , uuid - .

+1

( ), script . . ASP.net - , , , .

google, , WMI vbscript .

From .net, you can use the ManagementScope object to retrieve this data.

+1
source

All Articles