Example #1
0
 public static string AddTemplateResource(this ResourceManager manager, IDotvvmRequestContext context, DotvvmControl control)
 {
     using (var text = new StringWriter())
     {
         control.Render(new HtmlWriter(text, context), context);
         return(manager.AddTemplateResource(text.ToString()));
     }
 }