You are viewing limited content. For full access, please sign in.

Question

Question

There is a way to capture computer name that the form was submitted?

asked on September 22, 2014

We need a way to capture the computer where the user is submitting the form.

0 0

Replies

replied on September 22, 2014 Show version history

I'm assuming that this is for internal clients.

 

If your client is running IE you can try a little ActiveX hackery:

var network = new ActiveXObject('WScript.Network');
alert(network.computerName);

Otherwise, you'd need to write a custom .NET web service that you could make an AJAX call to. It would pretty much be an empty method call, but you could use Request.UserHostName within the method to get the hostname, if it's available.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.