|
Latest Articles
Creating SharpRichTextBox for Live Character Count in WPF
Windows Presentation Foundation includes RichTextBox control which can be used to provide advanced editing features to the user. However, it does not provide a live indication of how many characters are typed in the TextBox. In this article we are going to implement a custom RichTextBox to provide a live view of the number of characters typed in the TextBox.
Move Over Nant, Rake is in Town
Build scripts are used to perform tasks like compiling the application, running unit tests, executing code coverage tools, building documentation etc. Nant is the most common build configuration script used in the .NET world. Nant is XML based and hard to maintain and configure. In this article we will demonstrate how the simplify build scripts by using Rake.
Implementing ViewModel in ASP.NET MVC Application
When using model binding in an ASP.NET MVC application we make sure that our user interface elements matches with the domain object. But sometimes this is not possible as user interface contains elements which does not make any sense on the domain objects. In this article we will demonstrate how to implement ViewModels which closely reflects the elements on the interface.
Using T4 Templates to Create Strongly Typed View Names
In ASP.NET MVC application we use the View method to render the view. The View method takes the name of the view as a parameter and then renders that view. The use of string as a parameter for view opens it up for errors as anyone can misspelled the name and cause the MVC framework to load a non-existent view. In this article we are going to use the T4 templates to create strongly typed view names.
|