acarter
-
Total Posts
:
2
- Scores: 0
-
Reward points
:
0
- Joined: 6/12/2001
- Location:
-
Status: offline
|
Remote User Name
Tuesday, June 12, 2001 6:56 AM
( permalink)
Is there a way of getting the Remote User name (not the IP but the actual name) in VBScript. I can capture this to a file using FP forms but there must be a more elegant way of doing this. Needless to say, I only started to use VBScript this morning!
|
|
|
|
aspprogrammer
-
Total Posts
:
10
- Scores: 0
-
Reward points
:
0
- Joined: 6/9/2001
- Location: Belgium
-
Status: offline
|
Re: Remote User Name
Tuesday, June 12, 2001 11:42 AM
( permalink)
Hi Carter, No idea in VBScript but in ASP this should work:) <% response.write(Request.ServerVariables("REMOTE_ADDR")) %>
|
|
|
|
aspprogrammer
-
Total Posts
:
10
- Scores: 0
-
Reward points
:
0
- Joined: 6/9/2001
- Location: Belgium
-
Status: offline
|
Re: Remote User Name
Tuesday, June 12, 2001 11:53 AM
( permalink)
Ooopss sorry, I was wrong, try this instead request.servervariables("HTTP_VIA")
|
|
|
|
acarter
-
Total Posts
:
2
- Scores: 0
-
Reward points
:
0
- Joined: 6/12/2001
- Location:
-
Status: offline
|
Re: Remote User Name
Wednesday, June 13, 2001 6:52 AM
( permalink)
Cheers for that. It worked a treat.
|
|
|
|