How to insert data in DATABASE? In this article I plan to demonstrate how to insert data from a SQL Server . This code should work on both SQL Server , I am using SQL 2005 & Visual Studio 2008, This code should work with both C# windows applications and C# web applications. Background: Part of my current project required me too store information from a database. I decided to use C# as my target language since I am currently reading Apress.Illustrated.C.Sharp.2008.Feb.2008 , which by the way is a must have book. Working: 1) First open Visual Studio 2008 : 2)Creat C# NEW PROJECT 3) Select C# WINDOWS FORM APPLICATION 4) Creat simple form which have 2 textboxes ( textbox1 & textbox2 ) ,2 lable( Name & Age )and 1 button ( INSERT ) 5) go to VIEW then SERVER EXPLORER in SERVER EXPLORER panel ,right click of DATA CONNECTIONS and CREATE NEW SQL SERVER CONNECTION 6) Enter the information to connect the...