It looks like I might be giving a course on Beginning .NET Development to non developers with IT backgrounds. I'm putting together my lectures and it's really hard. I want to make sure that I explain things so others can understand them. Even though this is a .NET course (with a web-based slant), I really see it as a fundamental software development (crash) course. You can’t become a great developer without understanding what’s going on behind the scenes. If you have any thoughts or advice on any of the topics at hand (am I missing a topic? are...
Update: FIX posted here In a previous post (http://blog.statichippo.com/archive/2009/11/16/findreplace-on-render-ndash-an-mvc-alternative-to-response-filters.aspx), I wrote about how to render a ViewPage to a string before writing it to the OutputStream. This would be helpful, for instance, to replace certain text with other text (in my case, I used this to replace special tags with other content). The method used basically worked like this: Add MemoryStream as a ResponseFilter Render output Flush the Response so that now the text is in the MemoryStream Use a StreamReader to ReadToEnd...