Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Community Forums
 Code Support: ASP (Non-Forum Related)
 Hello,I want to get Machine Address Or I want to g

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
AHMEDHHH1 Posted - 03 April 2013 : 15:52:18
Hello
I want to get
Machine Address
Or I want to get a fixed ip
9   L A T E S T    R E P L I E S    (Newest First)
AHMEDHHH1 Posted - 09 April 2013 : 14:16:13
ok Thank you, professor HuwR
HuwR Posted - 09 April 2013 : 12:44:55
No, that's not possible. There is no access to hardware information through JavaScript in web browsers. You might have some luck using browser plugins, ActiveX, etc.
AHMEDHHH1 Posted - 09 April 2013 : 10:09:35
ComputerName and UserDomain and UserName

Set objNetwork = CreateObject("WScript.Network")


Response.write "Computer Name: " & ObjNetwork.ComputerName & "<br>"
Response.write "User Domain: " & ObjNetwork.UserDomain & "<br>"
Response.write "User Name: " & ObjNetwork.UserName & "<br>"



I want to get RAM or processor
AHMEDHHH1 Posted - 09 April 2013 : 09:53:19
I got on the computer name
<%
Set objNetwork = CreateObject("WScript.Network")

strNAME = objNetwork.computername

response.write(" " & strNAME & "<br>")
%>

I want to get RAM or processor
HuwR Posted - 09 April 2013 : 02:44:10
try this javascript

<script type="text/javascript" language="javascript">   
var ax = new ActiveXObject("WScript.Network");   
document.write(ax.UserName + '<br />'); //logged in account name   
document.write(ax.ComputerName + '<br />'); //Windows PC name
</script>
AHMEDHHH1 Posted - 08 April 2013 : 15:42:59
Know how to find this kind of ip
But the problem with me that some people are using laptop and move from network to network
And changed the ip
You could get information on No. Alrmat or Albroosso or information about the computer user
HuwR Posted - 07 April 2013 : 03:43:23
taken from inc_func_common.asp


UserIPAddress = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
	if UserIPAddress = "" or left(UserIPAddress, 7) = "unknown" then
  		UserIPAddress = Request.ServerVariables("REMOTE_ADDR")
	elseif InStr(UserIPAddress, ",") > 0 then
		UserIPAddress = Left(UserIPAddress, InStr(UserIPAddress, ",")-1)
	elseif InStr(UserIPAddress, ";") > 0 then
		UserIPAddress = Left(UserIPAddress, InStr(UserIPAddress, ";")-1)
	end if
	UserIPAddress = Trim(ChkString(UserIPAddress,"SQLString"))
	if InStr(UserIPAddress, ":") > 0 then
		UserIPAddress = Left(UserIPAddress, InStr(UserIPAddress, ":")-1)
	end if
Carefree Posted - 06 April 2013 : 17:58:30
Now, with so many proxy servers in use, anyone wanting to fool you will be hard to detect. It would be nice if the MAC address was available.
Doug G Posted - 06 April 2013 : 16:40:44
You can maybe get the client ip with request.servervariables9("remote_addr") but it's not 100% reliable.
You can't get the client MAC address with asp, if that's what you're looking for.

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.03 seconds. Powered By: Snitz Forums 2000 Version 3.4.07