Use HostingEnvironment.MapPath
                                    Jun 25, 2010
                                    
                                        
                            
                        When running a service under IIS, the HttpContext.Current object is not available, so HttpContext.Current.Server.MapPath will fail.
fileName = HttpContext.Current.Server.MapPath(fileName);The solution is to use Hosting.HostingEnvironment.MapPath instead.
fileName = System.Web.Hosting.HostingEnvironment.MapPath(fileName);Date And Time Tracking in .Net
                                    Sep 28, 2009
                                    
                                        
                            
                        Getting the right date and time sounds simple enough, but when you look at a few interesting scenarios with multiple teams coordinating actions across multiple time zones with multiple clients and servers, designing for the date and time for a given event becomes complicated very quickly. I’d like to share an some approaches that I think work well in .Net.More...
Fields to Properties
                                    Jul 24, 2009
                                    
                                        
                            
                        How to automatically have Visual Studio 2008 convert fields to properties. More...