Browse by Tags
Sorry, but there are no more tags available to filter with.
-
If you install the starter site onto a port other than 80 you may need to do some code munging. On line 276 of App_Code\SiteContext.cs there is a line of code that looks like this: builder.Port = -1; // Removes the port setting from the site. This ensures Read More...
-
When I stepped back to take a look at the PageSetting/PageContext I found I wasn't completely happy with the design. It works perfectly but its usefulness is hindered by an unclear API. By this time we were beyond the point where I could refactor this kind of change so it stayed but this is a blog and I can show you how I would have made the change hopefully teaching you a little bit about the Starter Site and Refactoring in one post.
Read More...
-
In the last post I mentioned how attributes were used to affect page functionality. The main class behind that is PageContext and its army of attributes: PageGroupAttribute, PageLayoutAttribute, and SecureAttribute. The attributes control various aspects Read More...