Exemple #1
0
        public void BuildClick(string model, string cmd, WebMeta send)
        {
            var click = new UMC.Web.WebMeta().Put("model", model).Put("cmd", cmd);

            if (send != null && send.Count > 0)
            {
                click.Put("send", send);;
            }

            _data["click"] = click;
        }
Exemple #2
0
        public void BuildClick(string model, string cmd, string send)
        {
            var click = new UMC.Web.WebMeta().Put("model", model).Put("cmd", cmd);

            if (String.IsNullOrEmpty(send) == false)
            {
                click.Put("send", send);;
            }

            _data["click"] = click;
        }
Exemple #3
0
 public Editer(int section, int row)
 {
     webMeta.Put("section", section).Put("row", row);
 }