Reputation: 41
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
Reputation: 186
How about using request.servervariables("remote_addr") and request.servervariables("local_addr") ?
Upvotes: 3