url

How to Create a Website URL Verifier in Visual Basic

Introduction: Welcome to a tutorial on how to create a website/url verifier and checker in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a textbox to contain the website url, button1 to verify the url format and button2 to check the website response. Step 2: First lets make a function to check the url and return the correctly formatted url.
  1. Private Function doCheck(ByVal s As String)

Creating a Web Radio in VB.NET

Today, I will teach you how to create a web radio in vb.net. What is a web radio? I call it a web radio because this application has its radio to be played using the web. So now i will going to teach you how to do this. 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

URL Validation using C#

Today, i will teach you how to create a program that will validate a URL inputted using C#. We know that a URL is the address of a specific Web site or file on the Internet. It cannot have spaces or certain other characters and uses forward slashes to denote different directories. Some examples of URLs are http://www.sourcecodester.com/, http://google.com/, etc. Now, let's start this validating a URL tutorial! 1.

Check Valid or Invalid URL in VB.NET

A URL is the address of a specific Web site or file on the Internet. It cannot have spaces or certain other characters and uses forward slashes to denote different directories. Some examples of URLs are http://www.sourcecodester.com/, http://google.com/, etc. Now, let's start this validating a URL tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.