Exemple #1
0
        public static object GetObject(Type type, string prefix)
        {
            object obj = Activator.CreateInstance(type);

            BinderHelper.Full(obj, HttpContext.Current.Request.Params, prefix, false);
            return(obj);
        }
Exemple #2
0
 public void FullValue(object source, System.Collections.Specialized.NameValueCollection data, string Prefix, bool ispostback)
 {
     BinderHelper.Full(source, data, Prefix, ispostback);
 }