(Dejan Bozic) This article explains using an alternative approach to control templates with the ability to replace certain string values at runtime.
Tag: Development
Create Add Dynamic Button Controls In Asp.Net Handle Click Event
(jaiN) This example explains how to Create or Add Dynamic Controls or Button In Asp.Net page and handle respective events like Click Event.
Using registers for return value debugging in Visual Studio
(Ryan Knuth) Often, I find myself desiring to know the return value of function. Normally, I can set a print message breakpoint on the following line after the function call:
RSS & Atom MediaTypeFormatter for ASP.NET WebAPI
(Filip W.) Today we are going to build a custom formatter for ASP.NET WebAPI, deriving from MediaTypeFormatter class. It will return our model (or collection of models) in RSS or Atom format.
Convert char array to string in C#
(Mahesh Chand) The string class constructor takes an array of characters to create a new string from an array of characters. The following code snippet creates two strings. First from a string and second by direct passing the array in the constructor.
Adding Business Services in WPF with Prism and Unity
(Peter Vogel) In an earlier column , I introduced WPF+Prism+Unity, which form Microsoft’s recommended technology base for creating applications that assemble themselves at run-time. This technology set is all about creating loosely-coupled modules that you can update or replace without having to rec
Controlling File Attribute Flags
(Richard Carr) Microsoft Windows allows a number of Boolean attributes to be assigned to each file in the file system. These flags provide information such as indicating that a file is hidden or read-only. The properties can be read and changed using the .NET framework.
How Do You Populate Shared Views In A Complex Layout Using MVC?
(Ben Nadel) I’ve been thinking about this problem for the past few days and have gotten no-where! Even after extensive Googling, I’ve not found anything that begins to really answer my question satisfactorily. When it comes to an application Layout, where in the Controller do you populate the data f
Creating a Tabbed Entity Template using Wijmo Open for Juice UI
(Steve) Wijmo Open for Juice UI is quite cool and offers an alternative to using Ajax Control Toolkit which is still cool but Wijmo Open for Juice UI supports IE6+, Firefox 3+, Safari 3+, and Chrome browsers which should mean everything works.
Convert string to char array in C#
(Mahesh Chand) The ToCharArray method of the string class converts a string to a character array. The following code snippet creates a string into a char array.
