possibly using javascript or asp.net?
|
|
|||||||||||||||||
|
|
|
You can do it with IE 'sometimes' as I have done this for an internal application on an intranet which is IE only. Try the following:
It may or may not require some specific security setting setup in IE as well to allow the browser to access the ActiveX object. Here is a link to some more info on WScript: More Information |
|||
|
|
|
|
Well you could get the ip address using asp.net, then do a reverse DNS lookup on the ip to get the hostname. From the ASP.NET Developer's cookbook ... Performing a Reverse-DNS Lookup. |
||||
|
|
|
Browser, Operating System, Screen Colors, Screen Resolution, Flash version, and Java Support should all be detectable from JavaScript (and maybe a few more). However, computer name is not possible. EDIT: Not possible across all browser at least. |
||
|
|
|
|
Erm is there any reason why you can't just use the HttpRequest? This would be on the server side but you could pass it to the javascript if you needed to?
The one problem with this is it would only really work in an Intranet environment otherwise it would just end up picking up the users Router or Proxy address... |
||
|
|
|
|
It is not possible to get the users computer name with Javascript. You can get all details about the browser and network. But not more than that. Like some one answered in one of the previous question today. I already did a favor of visiting your website, May be I will return or refer other friends.. I also told you where I am and what OS, Browser and screen resolution I use Why do you want to know the color of my underwear? ;-) You cannot do it using asp.net as well. |
||
|
|
|
|
No this data is not exposed. The only data that is available is what is exposed through the HTTP request which might include their OS and other such information. But certainly not machine name. |
||
|
|
|
|
We did something like this for an inhouse bugtracking tool, it got taken out before we went live but i think it would work I think a coop student found it on the internet somewhere :)
{ /// /// Summary description for Class1. /// public class CPUInfo { #region Properties private String osVersion; public String OSVersion { get { return this.osVersion; } }
|
||
|
