示例#1
0
 protected void DotNetCustomCalDotNetack_CustomCalDotNetack(object sender, Controls.CustomCalDotNetack.DotNetCustomCalDotNetack.CustomCalDotNetackEventArgs e)
 {
     string action = e.Parameters;
     _presenter = new UserEditPresenter(this);
     bool result = SaveOrUpdate();
     DotNetCustomCalDotNetack.CalDotNetackResult.Result = result.ToString();
 }
示例#2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         _presenter = new UserEditPresenter(this);
         _fguid = Request["fguid"];
         if (!string.IsNullOrEmpty(_fguid))
         {
             View();
         }
         else
         {
             pwtip.Visible = false;
         }
     }
 }