SqlConnection MyConnection = default(SqlConnection);
SqlCommand MyCommand = default(SqlCommand);
MyConnection = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["EmployeeClockin1"]);
MyCommand = new SqlCommand("Get_unit_ClockIn", MyConnection);
SqlDataAdapter MyDataAdapter = new SqlDataAdapter(MyCommand);
DataSet ds = new DataSet();
DataTable dt = new DataTable();
MyCommand.CommandType = CommandType.StoredProcedure;
MyCommand.Par ...
Go to the complete details ...