In this two part tutorial you will learn how to create a chat client that connects to a chat server and exchanges messages with all the other connected clients. This second part covers the development of the chat server.
How to create an AJAX contact form
This tutorial shows users how to create an AJAX contact form. The form method in this tutorial is set to POST.
Tabbed Web Browser
In this tutorial we will be making a tabbed web browser. I will explain every thing as we go, so I will get the same experience as you all do. I will be making the program as I make the tutorial. I hope that this helps you out and that you like this! It is going to take about one hour if you are typing it in and about 10 minutes if you are copying and pasting.
Accessing the controls and methods of a MasterPage
If you are looking to access the method, property or control of an ASP.NET MasterPage from inside a web form you need to do a little trick to get it to work properly. This tutorial explains how you can do this with only a few lines of code, and it also shows you how to create MasterPages that you can use with web forms.
Emptying the Recycle Bin using C#
This programming tutorial will teach you how to empty the recycle bin programatically using the SHEmptyRecycleBin() API call from Shell32.dll.
Extracting Icons from Files
In this C# tutorial you will learn how to extract the graphic icon from a file by using a Shell32.dll API call to the unmanaged method SHGetFileInfo().
Getting the hex value of a color using ColorPicker
With the .NET Framework you can use the Windows Color Picker control in your application thanks to the ColorPicker object. However, the ColorPicker object doesn’t have a method or property to get the color in hex format. In this tutorial we’re going to build a color picker application and we will be getting the hex value of the selected color.
Word counter in C#
This simple tutorial will show you how to create an application that counts the words in a string and also strips HTML tags if necessary.
DataGrid inside a DataGrid
This tutorial will teach you how to place and bind a DataGrid inside another DataGrid. The binding of the inner DataGrid will be done depending on the row of the parent DataGrid.
Getting visitor information
Getting information about your visitors is interesting and sometimes useful for generating statistics, especially when you have a high traffic.