a DotNetStyling - .Net World by Armen Ayvazyan : listopad 2007 - Posts
Welcome to DotNetStyling Sign in | Join | Help
Add to Technorati Favorites Add to Google Reader or Homepage Add to My AOL Subscribe in FeedLounge Subscribe in Bloglines Add to Excite MIX Add to flurry Add to Pageflakes Subscribe in NewsGator Online


listopad 2007 - Posts

How to Create Plugin for Windows Live Writer? Simple Content Source.
Windows Live Writer gives capability to extend functionality by creating new plug-ins. What I will demonstrate here is how to create content source plug-in which inserts custom formatted content. There are two types of content sources available in writer: Read More...
Abstract Factory Design Pattern
Abstract Factory provides interface for creating set of objects without specifying concrete implementation. Abstract Factory uses abstract classes and decouples concrete implementation from the system. It brings flexibility to easily Read More...
Passing Parameter by Value and by Reference ("ref"). CLR Internals
What is the difference between passing parameter by reference (using "ref" keyword) and by value (without using "ref" keyword)? This is really nice and advance question which demonstrates understanding of .Net internals, especially relationship between Read More...
Append new line in StringBuilder: AppendLine, AppendFormatLine, JavaScriptBuilder
It is a common technique in ASP.NET to generate JavaScript code from the web page's code behind file (.aspx.cs, .aspx.vb). Unfortunately it is a problem to read and sustain rendered JavaScript code because it usually renders all JavaScript code in one Read More...
Issue of Rendering JavaScript in WebControls
Originally I was not planning to post this subject until I spent hours for hunting some ghost JavaScript code. Problem was in generating custom JavaScript inside of WebControl. Basically this is not about "How" to generate JavaScript code but "When". Read More...