Results 1 to 5 of 5
  1. #1
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    810
    My Mood
    Amused

    Cool Website Status Checker

    Another old video... Another easy code.
    How to check the website status.

  2. #2
    Attacker3's Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    Canada
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Bored

    Post Whats the point?

    No offence, but why make a program when you can just go to that website and find out quickly?

  3. #3
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    810
    My Mood
    Amused
    Quote Originally Posted by Attacker3 View Post
    No offence, but why make a program when you can just go to that website and find out quickly?
    It would be useful for many applications that perform more functions, and not only this.
    Really I made this video to show you how to make function and how to use webclient for some cases
    Quote Originally Posted by Attacker3 View Post
    offence
    I don't see any offence.
    Last edited by Raydenman; 12-25-2014 at 12:16 PM.

  4. #4
    Sasuke Uchiha!'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    677
    Reputation
    46
    Thanks
    1,523
    My Mood
    Relaxed
    Quote Originally Posted by Raydenman View Post
    Another old video... Another easy code.
    How to check the website status.
    Could you post the source code please mate?
    And btw, that is the "Ghost.vb" Theme right?
    "For me, revenge is everything, and failure is nothing."
    -Sasuke Uchiha

  5. #5
    Raydenman's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Italy
    Posts
    261
    Reputation
    10
    Thanks
    810
    My Mood
    Amused
    Quote Originally Posted by TyrellWantsHacks View Post
    Could you post the source code please mate?
    First we need to import the namespaces:
    Imports System.Net
    Button1:
    MsgBox(getStatus(TextBox1.Text), MsgBoxStyle.Information, "Information")

    Under button1 code:
    Function getStatus(ByVal input As String) As String
    Try
    Dim webclient As String = New System.Net.WebClient().DownloadString("https://isup.me/" + input)

    If webclient.ToLower.Contains("is up") Then
    Return "Website online"
    ElseIf webclient.ToLower.Contains("looks down from here") Then
    Return "Website offline"
    ElseIf webclient.ToLower.Contains("huh?") Then
    Return "Unknown website"
    Else
    Return "Error"
    End If
    Catch excez As Exception
    Return "Error: " & vbCrLf & excez.ToString
    End Try
    End Function

    https://gyazo.com/5640e840b7e2905f85f76572b19b991a

    Quote Originally Posted by TyrellWantsHacks View Post
    And btw, that is the "Ghost.vb" Theme right?
    I don't have used themes on these projects, it is just a Windows Theme

  6. The Following User Says Thank You to Raydenman For This Useful Post:

    Sasuke Uchiha! (12-25-2014)

Similar Threads

  1. [Release] Ex0rtoolkit v2.0.0 Unleashed [Multi Website Scraper,Checker,Server Scraper,Tools]
    By Jew in forum Minecraft Tools & Resources
    Replies: 32
    Last Post: 08-27-2014, 09:58 AM
  2. [Tutorial] Mw3 Status Checker
    By Jorndiel in forum Call of Duty Modern Warfare 3 Tutorials
    Replies: 6
    Last Post: 02-11-2012, 12:21 AM
  3. MPGHScape Online Status Checker
    By Gargamele in forum Runescape Private Servers
    Replies: 2
    Last Post: 10-06-2011, 04:41 PM
  4. CBL Status Checker / Clean-Dirty Detector
    By Ugleh in forum Combat Arms Discussions
    Replies: 60
    Last Post: 09-23-2009, 08:04 PM
  5. CBL Status Checker / Clean-Dirty Detector
    By eliran93 in forum Combat Arms Discussions
    Replies: 16
    Last Post: 09-23-2009, 01:36 PM