Tuesday, September 02, 2008 10:45 AM
The overall architecture of CommunityBlog is driven by the use of ASP.NET MVC web application model, repository pattern to decouple data source provider from domain model, and service layer to encapsulate operations from different services provider into single object. Those architecture decisions will help us make a robust and easy to maintain application.
[Read More]
Monday, September 01, 2008 8:23 AM
CommunityBlog is the name of my new community project as implementation of LINQ to SQL and ASP.NET MVC technologies in the real world. It is a blogging engine just like dottext, subtext, or BlogEngine.NET, with main additional feature: supporting multiple users in the same website; and each user may have more than one blogs.
[Read More]
Saturday, August 30, 2008 5:00 PM
Microsoft .NET framework 3.5 SP1 has been equipped with routing assembly which enables our website to have rich URL interactions. This fact is also amplified with the presence of current ASP.NET programming model called MVC (model, view, and controller). One of the interesting stuffs we can accomplish is extension-less URL, i.e. URL without extension.
[Read More]