This tutorial will explain how to create a rich text editor in a webpage using simply an iFrame in editable mode and its methods.
Creating a download manager in C#
Learn how to create a download manager with a progress indicator in C# / .NET 2.0 using stream readers, web clients, web requests, buffers and more. You will also be learning the basics of threading in C#.
Backup and restore SQL databases
Programming tutorial that shows you how to backup a SQL database to a BAK file and then restore it from the same file using C#. First we list all running SQL Server 2005 instances, then we connect to one of them and retrieve all the databases from that server, finally we create the backup and restore operations; everything is done using SQL Management Objects (SMO).
Dynamic 5 Star Rating Script
A dynamic 5 star rating script that can be used along with a server-side language and AJAX to allow visitors to submit their vote in an interactive manner.
Developing an NNTP Newsgroup Reader
Learn how to develop a C# application that retrieves the available newsgroups from an NNTP server and then displays the articles from those specific newsgroups.
Splitting and joining files using C#
This tutorial will teach you how to create a basic file splitter and joiner using C#, byte arrays and file streams. It will allow you to split files into as many output files as you want and then reconstruct the file from the splitted output files.
Random number within a range
Generating a random number in C++ is easy, but for generating one within a range you must use a little trick.
Creating a UPS Shipping Calculator
This tutorial will teach you how to calculate the shipping cost based on the weight, height, length and depth of the box, the distance and the UPS service type. A sample form will be created that will post information to a UPS page. The PHP script will then retrieve and display the shipping cost.
Creating and deleting directories
Will show you the basics of creating several directories named 1, 2, 3… or using a prefix like dir1, dir2, dir3. Also shows you how to delete an empty dir.
Capturing screenshots using C#
This tutorial will show you a very simple method of capturing screenshots using C# and .NET 2.0 and saving them as files with different formats, such as PNG, all thanks to the CopyFromScreen() method.