Show a confirmation dialog upon submitting a dialog by using a standard button with a little JavaScript instead of a typical submit button.
Checking For Leap Years
This tutorial will show you how to create a JavaScript function that checks whether a given year is a leap year (366 days) or not (365 days). In this tutorial I aim to teach you how to check valid leap years in JavaScript. Basically I want you to be able to understand how to go […]
Animated Color Matrix
This tutorial, especially recommended to beginners, will give you a better understanding of the JavaScript language: how to use loops, arrays and functions to create a fun animation. This JavaScript will make the background color of a few DIV objects change by creating animation patterns. Let’s start by creating the HTML that will later be […]
Rotate Array in JavaScript
A function for rotating arrays to the right or to the left, any number of times.
Extract Age from Birth Date
A Ruby function for extracting one’s age by passing in the birth date as a parameter.
Multithreading with C#
This tutorial offers an introduction to multithreading in C# and it also uses a sample project to show you how to start using threads. Context Ads More C# Resources Advertisement Okay, where to start… ah yes the beginning, Multithreading is essentially the same principal as a production line in a factory each thread is a […]
Slideshow and transition effects using JavaScript
Learn how to create a slideshow using JavaScript. It will feature next, previous, play, pause and resume buttons along with transition effects between pictures. First let’s create the HTML elements that we will use for the slideshow. We need an image, four buttons and two divs: We will use the img tag to display the pictures in […]
Generate Random Numbers using C#
This tutorial will take you through all you need to know about generating random numbers using C#. Awards: 5 stars: Programming tutorial/source code has a rate higher than 4.5. Content: Pseudo-Random Numbers Whether you’re planning on building a game, looking to pick a lucky winner from an array of contest participants or simply want to display […]
Objects in ASP
How to create a custom object in ASP (done just now for a mate in need…). Content:
How to connect to MS Access Database Using ASP
This tutorial documents code for connecting to a MS Access Database using the DSN-Less approach. With DNS-Less approach all you have to do in your code is define the location where your database resides. Content: This tutorial will show you how to connect to a MS Access database using the DSN-less approach.Remember, your database can reside anywhere in your […]