June 2015 Entries
MVC Request Life Cycle Life cycle of MVC request is a series of steps involved in processing client request. Regardless of technology and platforms almost all the web frameworks have one or other type of Request life cycle and MVC is no different. Understanding the life cycle of any web framework helps better leverage the features for processing requests. In this article I am going to explain what exactly happens in ASP.NET MVC request life cycle and what each step in the life cycle does and how ......
Life cycle of MVC request is nothing but a series of steps involved in processing client request. Regardless of technology and platforms almost all the web systems have one or other type of Request life cycle and MVC is no different. Understanding the life cycle of any web technology helps better leverage the features of processing requests. In this article I will explain what exactly happens in ASP.NET MVC request life cycle and what each step in the life cycle does and how we can leverage it further ......
cyclomatic complexity: Cyclomatic complexity in code is software metric used to indicate the complexity in the program. It is a quantitative measure of the number is linearly independent paths through programs source code. Read more about cyclomatic complexity here. In normal terms, the cyclomatic complexity measure tells how complex is your code. Based on the numbers given per method in source code, one can easily tell if the code is complex or not. The cyclomatic complexity also affects other software ......