View Single Post
Old 11-03-2000, 01:34 PM   #2
UncaDanno
Member (9 bit)
 
Join Date: Dec 1999
Location: Midland, NC, USA
Posts: 292
Try using "split":

Dim NodeArray
NodeArray = Split(Request.ServerVariables("Remote_Addr"), ".")
If NodeArray(0) = "209" and
NodeArray(1) = "26" and
NodeArray(2) = "217" then
...... do your redirect ......
End If
UncaDanno is offline   Reply With Quote