示例#1
0
 // GET: Contact/Delete/5
 public ActionResult Delete(int id)
 {
     Models.ContactInformation theContact = db.ContactInformations.SingleOrDefault(c => c.contact_id == id);
     return(View(theContact));
 }