Пример #1
0
        public IHtmlString EachSection(string name, object items)
        {
            ForeachSection fs = new ForeachSection();

            fs.Section  = name;
            fs.Template = this;
            fs.Items    = items;
            fs.Execute(Context);
            return(fs);
        }
Пример #2
0
 public IHtmlString EachSection(string name, object items)
 {
     ForeachSection fs = new ForeachSection();
     fs.Section = name;
     fs.Template = this;
     fs.Items = items;
     fs.Execute(Context);
     return fs;
 }