-
Recent Posts
Recent Comments
Archives
- May 2024
- October 2023
- September 2022
- November 2021
- May 2021
- April 2021
- January 2021
- February 2020
- May 2019
- August 2018
- July 2018
- April 2018
- December 2017
- November 2017
- October 2017
- June 2017
- May 2017
- April 2017
- February 2017
- December 2016
- September 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
Categories
Meta
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)