.NET BasicsThis section contains articles relating to various aspects of programming in .NET.
Using ASP.NET Data Caching in a DLL (Outside of Page/CodeBehind) - 2/4/2010 How do I access the ASP.NET Cache Object from a Data Access Layer DLL called from an ASP.NET Page? more...
Fill TextBoxes with Java Script on DropDownList SelectedIndexChange - 2/3/2010 How do I fill TextBoxes from an ASP.NET DropDownList SelectedIndexChange? more...
Finding State FullName in DropDownList with Abbreviation - 1/30/2010 I have a DropDownList of States, which has both the full name and abbreviated name. How can I set the full name in the text portion of the DropDownList? more...
Setting the Default Button in an ASP.NET Page with Multiple Submit Buttons - 1/30/2010 Suppose I have multiple Submit Buttons on the same page that acts like a wizard. How do I change the default button as the user moves through the wizard? more...
Use object.Find Method Instead of Looping Through Lis<T> - 1/12/2010 Is there a quick way to Find an object in a List<T> without looping through the List or using Linq? Yes; use the Find Method of the object. more...
Writing Plug-Ins for Loose Coupling of Application Components - 4/27/2009 How do I write a Plug-in for an application and how do I know whether a DLL implements an Interface that my application expects?
more...
Use Activator.CreateInstance to Create Objects from a String Name - 4/23/2009 How can I create an object of a class by using its string name instead of creating it directly? By using Activator.CreateInstance as demonstrated in this article. more...
Generate Classes From a Document - 4/23/2009 How can I create code from an existing table in a document. For example, I have numerous input descriptions in Word Tables. This article shows you how to use the table data to create input classes automatically. more...
Design Patterns - Facade Pattern - 2/20/2009 Have you learned Design Patterns? You probably need it on your resume and they will improve your coding. This article will demonstrate another simple Design Pattern called the Facade Pattern. more...
Design Patterns - The Strategy Pattern - 2/20/2009 Many times we may be using Design Patterns without knowing that we are using a pattern and certainly without knowing what the particular pattern is called. more...
< Previous Page 2 of 19 Next >
|