Ejemplo n.º 1
0
        public ActionResult CreateIndex(IndexModel mod, HttpPostedFileBase path)
        {
            string t  = Convert.ToString(path);
            int    ls = t.LastIndexOf('.');
            int    l  = t.Length;

            t = t.Remove(ls, l - ls);
            t = t.Replace("\"", ".");
            int lss = t.LastIndexOf('.');

            t        = t.Remove(lss, l - lss);
            t        = t.Replace(".", "\"");
            mod.path = t;
            DtCrud d      = new DtCrud();
            var    result = d.CreateIndex(mod.indexname, mod.path);

            return(View());
        }
Ejemplo n.º 2
0
 public Home2Controller()
 {
     repo = new DtCrud();
 }