Hello, Need a little help finding a script that shows browser details similar to this tool. Info I am looking to display is... IP Address Location ISP Browser Operating System Javascript Enabled Cookies Enabled Java Enabled Language ...any help in this matter would be very much appreciated. Thanks, John
I have googled for this but I keep coming up with the iwebtool version which I cannot customize. If I could write the script myself I wouldn't be posting this thread
Dim IP As String = Request.UserHostAddress Dim Browser As String = Request.Browser.Browser Dim OS As String = Request.Browser.Platform Dim Javascript As String = Request.Browser.JavaScript Dim cookies As String = Request.Browser.Cookies Dim Java As String = Request.Browser.JavaApplets Dim languages As String() = Request.UserLanguages Dim language As String = "" Dim i As Integer For i = 0 To (languages.Length - 1) language &= languages(i) & ", " Next Code (.Net): The above will give you a list of variables with the info in it. You will need to refer to a database using the IP to get the ISP and location. After that it depends if you are wanting to store them in a db, show them on screen etc