Beispiel #1
0
        public static T AddEntity <T>(Control controlContainer,
                                      bool blnAll = true,
                                      string[] strNotBindCtrlNames = null,
                                      bool ignoreCase = true)
        {
            var literacy = ignoreCase ? TypesHelper.GetTypeInfo <T>().IgnoreCaseLiteracy : TypesHelper.GetTypeInfo <T>().Literacy;
            T   obj      = (T)literacy.NewObject();

            foreach (Control control in controlContainer.Controls)
            {
                if (control.Tag == null || control.Tag.ToString() == string.Empty || control is System.Windows.Forms.Label)
                {
                    continue;
                }
                if (blnAll)
                {
                    if (strNotBindCtrlNames != null && strNotBindCtrlNames.Contains(control.Name))
                    {
                        continue;
                    }
                }
                literacy.Property[control.Tag.ToString()].SetValue(obj, ControlManager.GetOneValue(control));
            }
            return(obj);
        }
Beispiel #2
0
        public void LoadData(int method = 0)
        {
            NameValueCollection nvc = null;

            switch (method)
            {
            case 0: nvc = HttpContext.Current.Request.Params; break;

            case 1: nvc = HttpContext.Current.Request.Form; break;

            case 2: nvc = HttpContext.Current.Request.QueryString; break;
            }

            if (nvc.Count != 0)
            {
                var ti = TypesHelper.GetTypeInfo(this.GetType()); //缓存中获取
                var li = ti.IgnoreCaseLiteracy;

                foreach (var key in nvc.AllKeys)
                {
                    var item = key.ToLower();
                    if (li.Property.Names.Contains(item))
                    {
                        string value = nvc[item];
                        if (!string.IsNullOrEmpty(value))
                        {
                            li.Property[item].SetValue(this, value);
                        }
                        else
                        {
                            if (li.Property[item].GetType() == typeof(string))
                            {
                                li.Property[item].SetValue(this, "");
                            }
                        }
                    }
                }
            }
        }