//===============================================Import export==================================================

        //===============================================Openpopup======================================================


        #endregion
        #region Form
        public ActionResult FormPopup(string entryid, string entrykey, string redirectbyajax)
        {
            IDbConnection dbConn = new OrmliteConnection().openConn();
            var           dict   = new Dictionary <string, object>();

            dict["activestatus"]  = CustomModel.GetActiveStatus();
            dict["listLoginType"] = CustomModel.GetLoginType();

            dict["ddl_article_type"] = CustomModel.GetActiveStatus();
            dbConn.Close();

            //set parameter

            dict["redirectbyajax"] = redirectbyajax;
            ViewBag.entryid        = string.IsNullOrEmpty(entryid) ? "0" : entryid;
            ViewBag.entrykey       = string.IsNullOrEmpty(entrykey) ? "0" : entrykey;
            return(View("UserManagementForm", dict));
        }