<% strURLSpecialIP = "http://speedtest.maxis.com.my/ftthtest/page3.html" strURLDefaultIP = "http://speedtest.maxis.com.my/page1.html" strRemoteIP = Request.ServerVariables("REMOTE_ADDR") aryRemoteIP = Split (strRemoteIP, ".") if aryRemoteIP(0) = "121" then if aryRemoteIP(1) = "121" then if Cint(aryRemoteIP(2)) < 129 then Response.Redirect strURLSpecialIP else Response.Redirect strURLDefaultIP end if end if elseif aryRemoteIP(0) = "14" then if aryRemoteIP(1) = "192" then if Cint(aryRemoteIP(2)) > 191 then Response.Redirect strURLSpecialIP else Response.Redirect strURLDefaultIP end if end if else Response.Redirect strURLDefaultIP end if %>