View Single Post
Old 10-08-2008, 16:49   #13610
Philthee
Inactive
 
Join Date: Aug 2008
Posts: 1
Philthee is an unknown quantity at this point
Lightbulb Re: Virgin Media Phorm Webwise Adverts [Updated: See Post No. 1, 77, 102 & 797]

Would anyone consider hosting a landing page for webmasters to give information regarding Phorm / Webwise? What I'm thinking of is a standard page that gives some balanced information about the system, for and against that a webmaster can direct a user to if they detect the user is from a BT address range (or whoever is appropriate). For any of you who use asp.net, the code is simple:

Code:
 
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim IPAddress As String = Context.Request.UserHostAddress
If IPAddress.Substring(0, 6) = "217.42" Or IPAddress.Substring(0, 6) = "217.43" Or IPAddress.Substring(0, 6) = "217.44" Then
'in the BT IP range
Response.Write("<script>window.open('phorm.aspx','_blank','width = 400');</script>")
End If
End Sub
Philthee is offline