|
Hi all Ive a problem with a simple proxy pac script.
function FindProxyForURL(url, host)
{
if (isInNet(myIpAddress(),"172.22.24.0","255.255.255.0"))
return "PROXY 172.22.24.10:8080";
else
return "DIRECT";
}
It'very easy but it does not work.
Why??
Thanks
|