public ActionResult sendFeedback(Contact dataBlock)
        {
            //Pass the data to store the record into the table

            dbC.Addcontact("insert into MailCredential(Name,Email,Phone,Message) values('" + dataBlock.Name + "','" + dataBlock.Email + "','" + dataBlock.Phone + "','" + dataBlock.Message + "')");

            return(View("Successfull"));
        }