Knowing how to use a button in visual basic.net is one of the easiest but yet most important things to know when building a web site. Can you imagine a [...]
The for loop is a control statement that allows code to be executed repeatedly until a given Boolean condition is met. Its a lot easier to see it than to [...]
A bulleted list control adds a bulleted list to the web site. We are also able to choose what is put in the bulleted list. This item is best used [...]
In this tutorial we will be creating a simple currency converter that will convert U.S. dollars to Euro. This is a fun little project that can be useful on a web site [...]
Validation is an easy way of requiring input in a specific text box without much hassle. There is a control called RequiredFieldValidator that automatically checks if a text box has [...]
Hash tables use key and value pairs. The hash key is processed through a hashing function that is designed to create a unique value that is then used as an [...]
The length method counts how many characters are in a string and returns the number. This is useful for arrays or when validating a word has to be at least [...]
An array is data structure that stores a collection of individual values that are of the same data type. Rather than make 20 individual variables of the same data type, [...]
Functions are a very useful tool to know. It can make coding a lot easier, especially for long time consuming coding. When I first started coding, I did not like [...]
This tutorial will go through the steps of adding a button to a Microsoft Visual Studio page and outputting“Hello World” when it is clicked. If you have any knowledge of [...]