CSharpFeeds - All your C# feeds in one place.

Sponsors

Feed: ASPAlliance.com - Articles, reviews, and samples for .NET Developers

Site: http://aspalliance.com/ Link: http://aspalliance.com/rss.aspx

Thursday, September 22, 2011

Classes and Structs in C#

by Eric Fleming via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/22/2011 12:00:00 AM

There are two main concrete ways of encapsulating data and behavior in the common type system of the .NET Framework: classes and structs. Each one offers benefits over the other, and in this article I am going to briefly introduce these two concepts and discuss how to use each and when to use each based on their differences. ...

[ read more ]

Tuesday, December 28, 2010

Build Your First Cloud Application Using Visual Studio 2010

by Vince Varallo via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/28/2010 12:00:00 AM

One of the big buzzwords these days is "Cloud". The cloud is essentially a hosting service where you can host your databases or web sites. It is a cost-efficient way of getting applications up and running without investing a lot of money in infrastructure. This article will show you how to create an ASP.NET web site and deploy it to the Cloud. ...

[ read more ]

Tuesday, December 14, 2010

Abstract to Privileges rather than to Roles in ASP.NET Applications

by Steven Smith via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/14/2010 12:00:00 AM

It's very common to check whether the current requesting user is in a particular role in order to determine whether they are authorized to do or see something within an ASP.NET application. This approach can break down over time as the number of roles and business rules for determining authorization increase. By creating an abstraction for privileges, this issue can be easily managed. ...

[ read more ]

Tuesday, December 07, 2010

Book Review - Murach's C# 2010

by Anand Narayanaswamy via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/7/2010 12:00:00 AM

Do you want to learn C# in a professional manner? If so, why not check out Murach's C# 2010? After reading Anand's review, you will know what concepts are covered in this book and also will be able to ascertain its usefulness. ...

[ read more ]

Tuesday, November 30, 2010

Product Review - WP Robot

by Anand Narayanaswamy via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/30/2010 12:00:00 AM

Nowadays, many webmasters are constantly on a lookout for easy ways to legally create websites with existing content available on the web. WP Robot, developed by Lunatic Studios, simplifies the entire process by grabbing content from various online sources. In this review, Anand examines the usage and features of the product in detail and includes screenshots of the application in action. ...

[ read more ]

Tuesday, November 23, 2010

Alternatives to the Singleton Design Pattern

by Steven Smith via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/23/2010 12:00:00 AM

The Singleton Design Pattern is one of the simplest and most widely known design patterns in use in software development. However, despite its simplicity, it is very easy to get wrong and the consequences of its use even when properly implemented can outweigh its benefits. It turns out there are other ways to achieve the goals of the Singleton pattern which will often prove to be simpler, safer, and more maintainable. ...

[ read more ]

Friday, November 12, 2010

ASP.NET MVC 3: Server-Side Comments with Razor

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/12/2010 12:00:00 AM

In this article, Scott examines the usage of server side comments with Razor using ASP.NET MVC 3. He begins by providing coverage about the usage of Server Side Comments and then delves deep into the applicability of Razor into it with the help of relevant screenshots. ...

[ read more ]

Thursday, November 11, 2010

A few quick ASP.NET MVC 3 Installation Notes

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/11/2010 12:00:00 AM

In this article, Scott examines few installation tips associated with ASP.NET MVC 3 and C#/VB Async CTP. He also examines the usage of Resharper, NuPack/NuGet Schema and Feed Updates. ...

[ read more ]

Tuesday, November 09, 2010

Announcing the ASP.NET MVC 3 Release Candidate

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/9/2010 12:00:00 AM

In this article, Scott provides a detailed overview of the features included with ASP.NET MVC 3 Release Candidate. He examines some of the key features such as Razor Intellisense within Visual Studio, NuGet Package Manager, Partial Page Output Caching, Unobtrusive JavaScript and Validation, Remote Validator and Granular Request Validation. He also provides the links to the PDC Talk rendered by Scott Hanselman regarding ASP.NET MVC 3 including new improvements shipped with the ASP.NET MVC 3 Relea ...

[ read more ]

Book Review - Head First C#

by Anand Narayanaswamy via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/9/2010 12:00:00 AM

C# is one of the most popular programming languages and there are lot of traditional style books available on the market. However, many developers are on a lookout for a book with a difference. Head First C# is one such book which examines the tough concepts of C# in a different manner with lot of figures, puzzles and comic style references. ...

[ read more ]

Thursday, November 04, 2010

Silverlight Questions

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/4/2010 12:00:00 AM

In this article, Scott provides an insight of the next version of Silverlight. He provides a vision roadmap using which you can guess the improvements which will be introduced in the upcoming version of Silverlight. ...

[ read more ]

Friday, October 22, 2010

ASP.NET MVC 3: Layouts with Razor

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/22/2010 12:00:00 AM

In this article, Scott examines the functionality of layout pages with Razor with special reference to the improvements introduced in the recent ASP.NET MVC 3 Beta. He provides a detailed coverage of each steps with relevant source codes and screenshots. Towards the end of the article, Scott examines the relevance of Refactoring and usage of _ViewStart file with few tips for advanced developers. ...

[ read more ]

Tuesday, October 19, 2010

ASP.NET MVC 3: New @model keyword in Razor

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/19/2010 12:00:00 AM

This article examines the usage of the new @model directive which is now included with the ASP.NET MVC 3 Razor view engine in detail with the help of relevant screenshots. Scott also explains model referencing with both ASP.NET MVC 3 Preview and Beta with special reference to @model syntax. ...

[ read more ]

Tuesday, March 03, 2009

Beginning Test Driven Development

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/3/2009 12:00:00 AM

Many developers want to learn to use the practices of Test Driven Development. In this article, Brendan explains how to get started writing tests before writing code. He uses code snippets of tests and the implementation code to demonstrate some practices he uses when testing. ...

[ read more ]

Monday, February 09, 2009

Standard Type Casting and "as" Operator Conversions

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 2/9/2009 12:00:00 AM

Converting objects from one type to another is a common practice in software development. When dealing with this, it is important to understand the difference between standard casting and using the "as" operator to convert. In this article, Brendan explains this difference and when to use each type of conversion. His code snippets demonstrate the information he is explaining in the article. ...

[ read more ]

Wednesday, November 12, 2008

Exemplifying the Factory Method Pattern inside the .NET Framework

by Xianzhong Zhu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/12/2008 12:00:00 AM

The Factory Method pattern is one of the most used design patterns. In this article, Xianzhong demonstrates the basic idea of the popular Factory Method pattern, and then gets further into the utilization of this pattern in .NET by unveiling the design secret of the WebRequest class with the help of relevant screenshots and source code. ...

[ read more ]

Wednesday, July 23, 2008

Sorting an Array of Custom Objects in C#

by Sandesh Meda via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/23/2008 12:00:00 AM

In this article Sandesh discusses the different ways of sorting an array of custom objects in C# using the IComparable and IComparer interfaces. Examples are provided on the simple case of sorting an array of built in data types and extends the example to custom objects. He demonstrates the concepts with the help of code samples along with relevant analysis for each one of them. ...

[ read more ]

Wednesday, July 16, 2008

Data Conversion and Validation

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/16/2008 12:00:00 AM

This article shows techniques to convert data or issues when working with data conversion and validation. Brian examines the techniques involved in Data and Nullable Type Conversion with the help of code snippets in C#. He also provides an outline of String, Data Type ranges, and the different ways with which you can manipulate data input in ASP.NET. ...

[ read more ]

Monday, July 07, 2008

What to Know About Value Types and Reference Types in C#

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/7/2008 12:00:00 AM

Value types and reference types are important concepts in C#. In this article, Brendan describes these concepts in an easy way. This beginners' tutorial is written to help people unfamiliar with these concepts to gain a basic understanding of them. ...

[ read more ]

Wednesday, May 14, 2008

CodeSnip: Unexpected behavior with C# auto-implemented properties

by Joseph Chahine via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/14/2008 12:00:00 AM

In this code snippet, Joseph examines a scenario of an unexpected behavior which will happen while using C# auto-implemented properties with reflection. After providing a step-by-step description of the scenario, he provides the complete code listing of all the C# files used in the sample project along with a screenshot of the final output and the relevant Visual Studio 2008 project. ...

[ read more ]

Friday, May 09, 2008

LINQ to SQL Instantiation

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/9/2008 12:00:00 AM

This article discusses how and when the objects within LINQ to SQL are created and instantiated, and how it maintains a list of the changes that need submitted to the database. It also discusses how this can be managed and some of the intricacies in LINQ with the help of source code. ...

[ read more ]

Tuesday, March 04, 2008

Useful Extension Methods

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/4/2008 12:00:00 AM

In this article, Brian examines extension methods and how they can be used with .NET Framework applications. He begins with a short introduction and then provides a detailed explanation of the application of extension methods with the help of source code in C#. ...

[ read more ]

Thursday, February 21, 2008

Working with Lambda Expressions

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 2/21/2008 12:00:00 AM

In this article, Brian discusses the usage and application of lambda expressions in .NET applications. After providing a short introduction, he examines the concepts with the help of source code and relevant explanation. ...

[ read more ]

Thursday, January 24, 2008

Socket Programming in C#

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/24/2008 12:00:00 AM

In this article, Joydip demonstrates the working of socket programming in C#. He starts with a brief introduction of sockets and ports and examines the differences between synchronous and asynchronous Communication. You will then learn how to work with System.Net and System.Net.Sockets namespaces along with the implementation of a simple client-server application. The article is well supported by relevant source codes and its corresponding output in screenshots. ...

[ read more ]

Friday, December 28, 2007

Understanding and Using Partial Classes in C#

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/28/2007 12:00:00 AM

In this introductory article, Brendan describes how partial classes work and how to create partial classes. He walks you through when to use partial classes as well as how to implement multiple interfaces with partial classes. The examples used will help beginners learn about this useful technology. ...

[ read more ]

Thursday, December 06, 2007

Understanding Interfaces in C#

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/6/2007 12:00:00 AM

Interfaces are a very useful tool built into C#. In this article Brendan explains the basics of how interfaces work and for what they may be used. He explains how to create simple custom interfaces and how to implement them. ...

[ read more ]

Monday, September 24, 2007

Implement Sort and Custom Enumerator in Generic List

by Satheesh Babu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/24/2007 12:00:00 AM

The introduction of C# 2.0 gave many new features that made developers' lives easier. This article elaborates on the usage of the Genric list as an alternative for business object collection and explains the implementation of sorting and custom enumerations with generic list. Developers can implement their own sorting and custom enumerator for the generic list using this article. ...

[ read more ]

Wednesday, August 08, 2007

Handling Events within a Repeater Control Using ASP.NET 2.0

by Shaun Eutsey via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/8/2007 12:00:00 AM

This article examines how to handle events within an ASP.NET 2.0 Repeater control with embedded buttons. ...

[ read more ]

Friday, August 03, 2007

Creating Custom NUnit Assertions

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/3/2007 12:00:00 AM

This article discusses how to create assertions in the NUnit framework. NUnit has added some assertion classes to its framework; this article will show you how to extend it to meet your testing needs. ...

[ read more ]

Tuesday, June 19, 2007

Custom Client Side Drag and Drop Behavior in ASP.NET AJAX

by Dflying Chen via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 6/19/2007 12:00:00 AM

This article explains the step-by-step procedure of how to create a custom Drag and Drop behavior by implementing IDragSource and IDropTarget interfaces provided by ASP.NET AJAX client side framework, which will lead to a very attractive and user friendly User eXperience (UX). ...

[ read more ]

Create Client Controls in ASP.NET 2.0 AJAX 1.0 Extensions

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 6/19/2007 12:00:00 AM

In this article Bilal Haidar demonstrates how to create a basic client control Grid with Edit/Delete/Create functionalities with ASP.NET 2.0 AJAX 1.0 Extensions. ...

[ read more ]

Monday, June 18, 2007

Understanding Design Pattern Using C#

by Srinivas Jadhav via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 6/18/2007 12:00:00 AM

In this article the author examines the usage of design patterns using C#. ...

[ read more ]

Friday, June 08, 2007

Unveil the Data Binding Architecture inside Microsoft ASP.NET Ajax 1.0 - Part 2

by Xianzhong Zhu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 6/8/2007 12:00:00 AM

This article examines the practical usage associated with the client-side data binding techniques of the toolkit by building two distinct and more complex samples with the data sources derived from web services and a SQL Server 2005 database respectively. ...

[ read more ]

Thursday, June 07, 2007

CodeSnip: Handle Browser Close Event on the Server-Side

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 6/7/2007 12:00:00 AM

In this article Bilal Haidar demonstrates how to handle the close event of the browser on the client side and execute a server side method on the server code. ...

[ read more ]

Friday, May 25, 2007

Zip and UnZip files in C# using J# libraries

by Mohammed Habeeb via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/25/2007 12:00:00 AM

This article demonstartes the usage of J# library in C# for Zip and UnZip functionalities. ...

[ read more ]

Monday, May 14, 2007

Frequently Asked Questions in .NET 2.0

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/14/2007 12:00:00 AM

This article contains some of the frequently asked questions and answers in .NET 2.0 which should help all the Job seekers in .NET technology in preparation for interviews. ...

[ read more ]

Null Object Refactoring

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/14/2007 12:00:00 AM

This article will give an overview of the Introduce Null Object refactoring. The Null Object makes it easier to specify a null value in a business system, and this article will show you how. ...

[ read more ]

Friday, May 11, 2007

Using Generics and Inheritance to Simplify Development

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 5/11/2007 12:00:00 AM

This article will show you how you can use generics and inheritance techniques to simplify development in your applications, especially business-oriented applications. ...

[ read more ]

Tuesday, April 10, 2007

.NET String Hashing: The Hidden Knot

by Joseph Chahine via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 4/10/2007 12:00:00 AM

This article explains why string-hash outputs in .NET 1.1 and .NET 2.0 are different and provides a workaround to solve this problem. ...

[ read more ]

Sunday, April 08, 2007

New "Orcas" Language Feature: Lambda Expressions

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 4/8/2007 12:00:00 AM

In this article, Scott examines about Lambda Expressions which is a new feature of Visual Studio code anmed Orcas. ...

[ read more ]

Thursday, April 05, 2007

Working with Delegates in C#

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 4/5/2007 12:00:00 AM

In this article Joydip discusses what delegates are with lucid code examples. ...

[ read more ]

Wednesday, April 04, 2007

Building a Simple FTP Application Using C# 2.0

by Mohammed Habeeb via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 4/4/2007 12:00:00 AM

This article demonstrates how to create a simple FTP application using C# 2.0 with the help of code samples. ...

[ read more ]

Monday, April 02, 2007

Understanding Operator Overloading in C#

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 4/2/2007 12:00:00 AM

In this article Joydip discusses the concept of Operator Overloading in C# with the help of code samples. ...

[ read more ]

Tuesday, March 27, 2007

Implementing a Generic Data Transfer Object in C#

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/27/2007 12:00:00 AM

This article discusses how we can implement a Data Transfer Object (DTO) in C# with code examples. ...

[ read more ]

Monday, March 26, 2007

Working with Abstract classes, Sealed Classes, and Interfaces in C#

by SANJIT SIL via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/26/2007 12:00:00 AM

This Article describes the usefullness of Abstract Classes, Sealed Classes, and Interfaces. It also explains when we should use each of them with help from code samples. ...

[ read more ]

Wednesday, March 21, 2007

Encrypting and Decrypting Configuration File

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/21/2007 12:00:00 AM

This article exposes the powerful feature of ASP.Net 2.0 that encrypts and decrypts all the configuration sections of configuration file. ...

[ read more ]

Tuesday, March 20, 2007

Building an Online Storage System in ASP.NET 2.0

by Xianzhong Zhu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 3/20/2007 12:00:00 AM

This article demonstrates how to build an ASP.NET 2.0 based online file storage system with the help of detailed explanations and the complete source code. ...

[ read more ]

Friday, February 09, 2007

Start Development with Windows Communication Foundation

by Keyvan Nayyeri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 2/9/2007 12:00:00 AM

After writing two articles and introducing Windows Communication Foundation and its fundamentals, Keyvan talks about coding with this new technology in .NET 3.0, its programming model and development process. ...

[ read more ]

Tuesday, February 06, 2007

Working with Custom Providers

by Brian Mains via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 2/6/2007 12:00:00 AM

Creating your own provider from scratch is a difficult topic to understand. This article will create a provider from the abstract base class, to the configuration needs, to the static class that exposes it, like the other providers in the Microsoft .NET Framework do. ...

[ read more ]

Friday, February 02, 2007

CodeSnip: Validating XML Data using the XML Schema Definition

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 2/2/2007 12:00:00 AM

This code snippet explains how to validate an XML Document with an XSD schema file. ...

[ read more ]

Monday, January 29, 2007

Understanding Object Pooling in Microsoft .NET

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/29/2007 12:00:00 AM

In this article Joydip discusses what an Object Pool is and how we can implement one in .NET with the help of code examples in C#. ...

[ read more ]

Thursday, January 25, 2007

Display Local Weather Data On Your Site

by Andrew Mooney via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/25/2007 12:00:00 AM

In this article, Andrew demonstrates how to display current weather conditions from NOAA's National Weather Service XML feeds on your site. ...

[ read more ]

Wednesday, January 24, 2007

Creating a Custom ExpressionBuilder in ASP.NET 2.0

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/24/2007 12:00:00 AM

In this article Bilal Haidar will explain to you what ExpressionBuilders are in ASP.NET 2.0 and how to create a custom ExpressionBuilder to read an XML settings file. ...

[ read more ]

Monday, January 22, 2007

Dynamically Templated GridView with Edit, Delete and Insert Options

by G Mohyuddin via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/22/2007 12:00:00 AM

In this article the author presents a comprehensive solution to build a GridView with template fields generated at run time with in-place Insert, Delete and Edit operations with a full description of an effective implementation and usage of IBindableTemplate interface. ...

[ read more ]

Thursday, January 18, 2007

Creating a Custom BuildProvider in ASP.NET 2.0

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/18/2007 12:00:00 AM

In this article Bilal Haidar explains the usage of a BuildProvider in ASP.NET 2.0 and shows you how to create a custom BuildProvider to access an XML file in the form of a C# class at design time. ...

[ read more ]

Exception Handling in .NET 2.0

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/18/2007 12:00:00 AM

In this article Uday examines the usage of Exceptions in .NET 2.0 with the help of examples and scenarios in Web and Windows. ...

[ read more ]

Monday, January 15, 2007

Review: Instant C# and Instant VB Code Conversion Utilities

by Steven Smith via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/15/2007 12:00:00 AM

In this review, Steve goes over the features of Instant C# and Instant VB from Tangible Software Solutions, two code conversion products which translate from VB to C#, and vice versa. ...

[ read more ]

Monday, January 08, 2007

Mover List Control for ASP.NET 1.x/2.0

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/8/2007 12:00:00 AM

In this article Bilal Haidar shows you how develop a list mover composite control that consists of two list boxes and two buttons that allow you to move items in both directions among the two list boxes. ...

[ read more ]

Serialization in Database

by Bhuban Mohan Mishra via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/8/2007 12:00:00 AM

Serialization in databases is mainly used to store images as BLOBs (Binary Large OBjects), but it can also be used to store customized objects as per user's requirements, without altering or loosing the state of the object. This article aims at throwing some light about the basics of serialization and its use in databases. ...

[ read more ]

Wednesday, January 03, 2007

Using Generics in C#

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 1/3/2007 12:00:00 AM

Generics allow us to create type safe collections with no boxing and un-boxing overhead. It is a concept that allows us to achieve parametric polymorphism. This article discusses this concept with examples. ...

[ read more ]

Thursday, December 14, 2006

Events in Windows Presentation Foundation

by Keyvan Nayyeri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/14/2006 12:00:00 AM

The way that events are handled in user interface is enhanced in Windows Presentation Foundation and .NET 3.0. Different routing strategies, different event argument types and different events let you to build powerful user interfaces which were so hard to build with older graphic user interfaces. In this article Keyvan discusses about events in Windows Presentation Foundation and some related topics. ...

[ read more ]

Monday, December 11, 2006

Combining Web Services and SQL Server Data Utilizing Business Objects Business View Manager - Part 1

by Eric Landes via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/11/2006 12:00:00 AM

Eric walks the user through comgining different data sources including Web Services into a Crystal Report. To do this Eric utilizes Business objects Business View Manager to combine this and in Part 1 he demonstrates how to set up the web Service for View Manager. ...

[ read more ]

Tuesday, December 05, 2006

Working with Windows Services in .NET

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/5/2006 12:00:00 AM

Windows Services are long running applications in Windows environments. This article discusses what Windows Services are and the ways to create, install and deploy them in .NET ...

[ read more ]

Friday, December 01, 2006

CodeSnip: Working with Images Using .NET

by Rajendra Kumar Sahu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 12/1/2006 12:00:00 AM

In this code snippet Rajendra examines how to work with images using Visual Studio .NET 2003 and SQL Server 2000 database. ...

[ read more ]

Thursday, November 16, 2006

Smart ListControl in ASP.NET 1.x/2.0

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/16/2006 12:00:00 AM

In this article Bilal Haidar shows you how to make any ListControl that ships with ASP.NET 1.x/2.0 a smart control by making those controls preserve the client-side changes on their collection of items. ...

[ read more ]

Wednesday, November 08, 2006

How to Popup a Window Using DIV Layer in ASP.NET 1.x/2.x

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/8/2006 12:00:00 AM

In this article Bilal Haidar shows you how to create your own customized DIV layer and use it as a Popup window that can include many controls ranging from simple HTML tags to ASP.NET Server controls, without using either the famous Open function nor the showModalDialog or showModelessDialog. ...

[ read more ]

Monday, November 06, 2006

Read and Write Open XML Files Using MS Office 2007

by Zeljko Svedic via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/6/2006 12:00:00 AM

In this article Zeljko explains the basics of the Open XML file format and specifically XLSX format, the new format for Excel 2007. This is done with the help of a demo application written in C# using Visual Studio 2005. ...

[ read more ]

Friday, November 03, 2006

Delegate the Work

by Stephen Rylander via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 11/3/2006 12:00:00 AM

Using delegates can add a lot of flexibility to your applications. But hearing this is much different than experiencing the reality of it. In this article we’ll explore how delegates along with events provide loose coupling and make your applications less brittle. ...

[ read more ]

Monday, October 30, 2006

Working with File and Directory Properties, Attributes and Access Control List

by SANJIT SIL via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/30/2006 12:00:00 AM

This article will explain how we can access and modify file and directory properties, attributes and Access Control Lists. ...

[ read more ]

Friday, October 27, 2006

Verifying Signature Using SQL Server 2005

by Xianzhong Zhu via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/27/2006 12:00:00 AM

In this article you will learn how to verify signatures using SQL Server 2005 with the help of code samples. ...

[ read more ]

Wednesday, October 18, 2006

Working with Cross Page Posting Using ASP.NET 2.0

by SANJIT SIL via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/18/2006 12:00:00 AM

In this article Sanjit describes the concept of cross page posting in ASP.NET 2.0. ...

[ read more ]

Wednesday, October 11, 2006

Multithreading with an Example of .NET Application

by Sandeep Acharya via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/11/2006 12:00:00 AM

In this article Sandeep discusses the basics of multithreading and how it could be effective over a single thread application. It also includes the advantages and disadvantages of multithreading. The article includes the complete .NET project for creating a simple multithreaded application. ...

[ read more ]

Friday, October 06, 2006

Working with normal and static constructor in C# 2.0

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/6/2006 12:00:00 AM

This Code snippet explains when a normal constructor and static constructor gets initialized. After going through this code snippet, reader gets a clear cut understanding of the steps involved in object initialization (Both static and non-static) ...

[ read more ]

Thursday, October 05, 2006

Introduction to XAML

by Keyvan Nayyeri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/5/2006 12:00:00 AM

In this article Keyvan introduces Microsoft's new markup language, XAML, for designing user interfaces in .NET 3.0. ...

[ read more ]

Wednesday, October 04, 2006

CodeSnip: How to Create a Dynamic Searchable DropDown List in ASP.NET

by Nidal Arabi via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 10/4/2006 12:00:00 AM

In this article Nidal examines how to create a dynamic searchable dropdown list using ASP.NET. ...

[ read more ]

Tuesday, September 19, 2006

CodeSnip: How to Select Record(s) Using Checkboxes and Delete on Confirmation in GridView

by Sushila Bowalekar Patel via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/19/2006 12:00:00 AM

In this sample Sushila demonstrates how to select record(s), and based on the checkbox values checked/unchecked status, delete the record(s) on confirmation. ...

[ read more ]

Monday, September 18, 2006

How to Write Atomic Transactions in .NET

by Keyvan Nayyeri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/18/2006 12:00:00 AM

Atomic transactions are the base part of ACID theory. Using this kind of transaction you can make sure your transaction will not cause any problem for the system if something goes wrong or if multiple requests are sent for the same resource or data. In this article Keyvan shows the simple process to write these transactions in .NET. ...

[ read more ]

Friday, September 15, 2006

Using CodeDOM in .NET 2.0

by Uday Denduluri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/15/2006 12:00:00 AM

In this article Uday explains CodeDom and dynamic compilation in general. It also explains the Namespace and the Classes involved with the help of code snippets. ...

[ read more ]

Thursday, September 14, 2006

Migrating Access Database to SQL Server

by Byapti Albert via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/14/2006 12:00:00 AM

In this article Byapti demonstrates how to migrate Access database to SQL Server with the help of sample code. ...

[ read more ]

Tuesday, September 12, 2006

Working with Custom Error Pages Using ASP.NET

by SANJIT SIL via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/12/2006 12:00:00 AM

In this article Sanjit examines the creation of custom error pages in ASP.NET using C#. ...

[ read more ]

Thursday, September 07, 2006

Boxing and Unboxing in .NET

by Sandeep Acharya via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/7/2006 12:00:00 AM

The article deals with the basic idea of Boxing and Unboxing techniques. Though handled automatically by the Common Language Runtime, it is useful for developers to have an understanding of how these processes affect their programs. ...

[ read more ]

Tuesday, September 05, 2006

Introducing Serialization in .NET

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 9/5/2006 12:00:00 AM

Serialization is the concept whereby an object is written into a linear stream. The .NET Framework provides an excellant support to serializing and deserializing objects. This article discusses Serialization, XML, SOAP and Binary and provides code examples to illustrate the concepts explained. ...

[ read more ]

Thursday, August 31, 2006

Review: Programming Microsoft ASP.NET 2.0: Core Reference

by Teemu Keiski via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/31/2006 12:00:00 AM

Teemu Keiski reviews Microsoft Press book titled Programming Microsoft ASP.NET 2.0: Core Reference, authored by Dino Esposito. ...

[ read more ]

Monday, August 28, 2006

Event Logging in a .NET Web Service

by Sandesh Meda via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/28/2006 12:00:00 AM

This article describes the logging mechanism in a .NET web service. It demonstrates how to write to the Event log from a .NET Web Service and explains how to resolve security issues related to event logging. ...

[ read more ]

Sunday, August 27, 2006

Building and Using a LINQ for SQL Class Library with ASP.NET 2.0

by Scott Guthrie via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/27/2006 12:00:00 AM

In this article Scott explores how to build and use a LINQ for SQL Class Library using ASP.NET 2.0. ...

[ read more ]

Friday, August 25, 2006

Implementing Multilingual Applications in Microsoft .NET

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/25/2006 12:00:00 AM

The .NET Framework provides a powerful support for localization. The System.Globalization namespace provides support in .NET for localizated applications. This article discusses how we can implement a multilingual application in .NET and the concepts of Globalization and Localization. ...

[ read more ]

Wednesday, August 23, 2006

Using SoftArtisans OfficeWriter with SQL Server Reporting Services 2005

by Mike Campbell via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/23/2006 12:00:00 AM

This article provides an overview of how SoftArtisans OfficeWriter interacts with SQL Server Reporting Services 2005 in a step-by-step manner and what it has to offer above and beyond standard SSRS functionality. ...

[ read more ]

Tuesday, August 22, 2006

Creating a SharePoint Lists Report Using Crystal Reports with Web Services

by Eric Landes via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/22/2006 12:00:00 AM

In this article Eric shows how to create a Crystal Report based on a Sharepoint List using web services. ...

[ read more ]

Monday, August 21, 2006

Working with Web Services Using ASP.NET

by SANJIT SIL via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/21/2006 12:00:00 AM

In this article Sanjit describes the creation and consumption of web service in an ASP.NET application with the help of examples. ...

[ read more ]

Friday, August 18, 2006

CodeSnip: How to Query and Display Excel Data in GridView Control

by Sushila Bowalekar Patel via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/18/2006 12:00:00 AM

This article shows how to display data from an Excel worksheet in GridView Control using ASP.NET 2.0. ...

[ read more ]

Wednesday, August 16, 2006

Application Domains in .NET

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/16/2006 12:00:00 AM

In this article Joydip provides a detailed analysis of Application Domains, how they work and their differences with a process. ...

[ read more ]

Tuesday, August 15, 2006

Review: AppDev Visual C# 2005: Developing Applications

by Brendan Enrick via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/15/2006 12:00:00 AM

In this review Brendan describes his likes and dislikes about "Visual C# 2005: Developing Applications," a DVD-based learning solution from AppDev. ...

[ read more ]

Monday, August 14, 2006

Validating XML Files Against XSD Schemas in .NET 1.x and 2.0

by Keyvan Nayyeri via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/14/2006 12:00:00 AM

Validating XML files is a common task in software development for developers. There are three ways to validate XML files: XSD Schema, DTD and Relax NG. In .NET XSD Schema is the preferred way to validate XML files. In this article I will dicuss both approaches and will give code samples to implement them both. ...

[ read more ]

Thursday, August 10, 2006

Extended GridView Control

by Bilal Haidar via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/10/2006 12:00:00 AM

In this article Bilal Haidar explains in detail an extended GridView control developed based on the GridView control that ships with ASP.NET 2.0. Also discussed are important features of this new GridView: the built-in context menu row-based and the Filter textbox to filter the GridView's rows. ...

[ read more ]

Thursday, August 03, 2006

Control Tree Recursion Using ASP.NET 2.0

by Tom Blanchard via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 8/3/2006 12:00:00 AM

In this article Tom examines how to recurse through a control tree using ASP.NET 2.0. ...

[ read more ]

Monday, July 24, 2006

Boosting the Performance of an ASP.NET Application Using StringBuilder Class

by Brett Burridge via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/24/2006 12:00:00 AM

In this article Brett examines how to increase the performance of an ASP.NET application using StringBuilder class. ...

[ read more ]

Friday, July 21, 2006

Review: CLR via C#, Second Edition

by Teemu Keiski via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/21/2006 12:00:00 AM

Teemu Keiski reviews CLR via C#, 2nd Edition, a book by Microsoft Press, which is worth its weight in gold. ...

[ read more ]

Thursday, July 20, 2006

Creating a Simple Configuration Section Handler Using ASP.NET 2.0

by Jason N. Gaylord via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/20/2006 12:00:00 AM

In this article Jason examines how to create a simple configuration section handler using ASP.NET 2.0 with the help of code samples. ...

[ read more ]

Tuesday, July 18, 2006

Introducing Object Oriented Programming

by Joydip Kanjilal via ASPAlliance.com - Articles, reviews, and samples for .NET Developers on 7/18/2006 12:00:00 AM

Object Oriented Programming (OOP) is one of the most important programming paradigms today. It promotes more flexibility and maintainability in software. The concepts of OOP are a pre requisite for learning any OOP programmming language like C# or Java, to name just two. This article focuses on the basic concepts of OOP and defines the related terminologies in a lucid language. ...

[ read more ]

Subscribe

New Feed

Product Spotlight

Recently Updated Sources

Legal Note

The content of the postings is owned by the respective author. CSharpFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on CSharpFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.

Advertise with us