-
Registry Settings???
Is there a way in ASP.NET to get a registry setting from the users computer? This is for a private corporate Intranet so security is not a big issue. I just need to find the registry setting that holds the path to a particular application that would reside on the users PC.
Another solution to my problem would be searching the users HardDrive for the EXE. Is there a way to do that?
ALL of this of course from a web page.
-
No. ASP .NET is server side and in no way interacts with the client.
-
Not without some sort of client side com component. Default security settings in IE would prevent you from doing any of this.
-
Ok does anyone know of any client side component that can help with this?