public ActionResult Create(MdoelOrgCompanyCreate model, FormCollection collection)
 {
     try
     {
         model.Save();
         return Content(WebTools.ScriptCloseEmbeddedFrameDialog(DialogOption.GetDefaultInstance()));
     }
     catch
     {
         //操作失败!
         Error = OASys.Resources.Properties.Resources.M00002E;
         model.RetriveData();
         return View(model);
     }
 }