Big Steph
Big Steph

Reputation: 41

Check if request is from local host

How do I check if a request is from the local host with Classic ASP, like the bool property HttpRequest.IsLocal in ASP.NET?

Upvotes: 4

Views: 1459

Answers (1)

CodeWhisperer
CodeWhisperer

Reputation: 186

How about using request.servervariables("remote_addr") and request.servervariables("local_addr") ?

Upvotes: 3

Related Questions