Adam Pooler
7 posts.
- Create IIS App Pool and Site With Windows PowershellHere’s a simple code snippet which shows how to create a new app pool and site in IIS via a Powershell script. It also checks for app pool and site…
- Outlook Automation Without COM ReferencesI have recently completed work on a WPF application which required a reasonable amount of interaction with Microsoft Outlook. Specifically, we needed to…
- ASP.NET: Recursive FindControl & Extension MethodsHere's a really short and simple bit of code that has the potential to be a bit of a time-saver. The FindControl method of the Control class is used to…
- WPF WYSIWYG HTML EditorWow... that's a lot of capitals and acronyms to squeeze into a single title (well, ok... one acronym, and two initialisms, if you want to split hairs).…
- ASP.NET ListView: Displaying Hierarchical DataThis is another instalment of avoiding the use of dynamic controls in ASP.NET. The new ASP.NET ListView control is really rather neat; using this control…
- ASP.NET: Downloading a DataTable in CSV FormatHere's a really quick tip: how to convert a DataTable to CSV, and write it dynamically to the response stream.
- Using Reflection To Extract Values From a Static ClassAn interesting question arose today of how to read property values from the HttpContext class dynamically. It is easy to imagine why this would be useful.…
