protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         _presenter = new CategoryEditPresentry(this);
         _presenter.Init();
         _fguid = Request["fguid"];
         if (!string.IsNullOrEmpty(_fguid))
         {
             View();
         }
     }
 }
 protected void DotNetCustomCalDotNetack_CustomCalDotNetack(object sender, Controls.CustomCalDotNetack.DotNetCustomCalDotNetack.CustomCalDotNetackEventArgs e)
 {
     string action = e.Parameters;
     _presenter = new CategoryEditPresentry(this);
     bool result = SaveOrUpdate();
     DotNetCustomCalDotNetack.CalDotNetackResult.Result = result.ToString();
 }