Monthly Archives: January 2016

Umbraco – start of source code analysis with Logging System

This is first article about umbraco’s source code analysis. umbraco is big project using Asp.net MVC with 3338 cs file and lots of javascript/css/html. Normally it is bigger than enterprise project and it will take long time to analysis it … Continue reading

Posted in Umbraco | Comments Off on Umbraco – start of source code analysis with Logging System

Pet Shop 4.0 – Abstract Factory Pattern

This is the last article about Pet Shop 4.0 source code. some other code such as singleton pattern will be too simple to explain. When BLL Layer to get data from database, Pet Shop 4.0 uses “Abstract factory pattern”. This … Continue reading

Posted in PetShop4.0 | Comments Off on Pet Shop 4.0 – Abstract Factory Pattern

Pet Shop 4.0 – BreadCrumb

BreadCrumb is very simple part in Pet Shop 4.0 source code. “BreadCrumbControl.ascx” is main file and it is implemented in Master Template. add following code into “class BreadCrumbControl” in “Page_Load” function. 1 2 3 4 5 HtmlAnchor testAnchor = new … Continue reading

Posted in PetShop4.0 | Comments Off on Pet Shop 4.0 – BreadCrumb

PetShop 4.0 – Authentication and Login (1)

PetShop 4.0 Authentication uses ASP.net build-in User Authentication. Let’s See where User Profile is firstly. Open PetShop 4.0 with Visual Studio. and Select Web Project Then select menu “WebSite” -> “ASP.net Configuration” The following question is where databases to get … Continue reading

Posted in PetShop4.0 | Comments Off on PetShop 4.0 – Authentication and Login (1)