KS wrote on 28 feb 2005 in comp.lang.javascript:
> ...
> I want to somehow deny everyone except the one with the correct
> ip-adress/range.
Not safely with any clientside script.
With serverside script,
like ASP j[ava]script it is quite possible,
as long as you mean the external IP:
<script runat="server" language="jscript">
var q = request.servervariables("remote_addr");
if (q != "123.456.789.100") response.end;
</script>
<html>
.......

Signature
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)