Understanding asp.net mvc IView and IView.Render
- by Harpreet
I'm trying to devise a method of doing VERY simple asp.net mvc plugins but mostly I'm trying to understand how view rendering works.
I've distilled my problem down to this
public class CustomView : IView
{
public void Render(ViewContext viewContext, TextWriter writer)
{
writer.Write( /* string to render */);
}
}
Now, within…