To start a new program in .NET
System.Diagnostics.Process.Start("http://www.ed.ac.uk");
System.Diagnostics.Process.Start("notepad.exe");
System.Diagnostics.Process.Start("http://www.ed.ac.uk");
System.Diagnostics.Process.Start("notepad.exe");
string connString = "server=localhost;database=Frank;uid='sa';pwd='novell'";
SqlConnection conn = new SqlConnection(connString);
conn.Open();
string sql = "select * from addressbook where id=";
string id = Request.Params["id"];