Published on Fri, 09 May 2008 08:01:55 -0400 Read: 62 times
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 Article.
Published on Wed, 07 May 2008 08:01:52 -0400 Read: 80 times
This article describes how to manage configuration data programatically through an ad hoc API in ASP.NET 2.0. After providing a brief introduction, Sanjit examines the usage and application of connection strings and encryption with the help of source code. Finally, you will learn the concepts involved with the configuration provider.... Read Article.
Published on Tue, 06 May 2008 08:01:53 -0400 Read: 110 times
SharePoint 2007 has a number of new features over its predecessors. After examining the features of it, Steven demonstrates how to develop, package, deploy and enable a simple feature solution. He examines the required steps to build the solution and then delves deeper into the structure of the XML file being used, configuration of the install code... Read Article.
Published on Wed, 30 Apr 2008 08:01:59 -0400 Read: 108 times
In the fourth part of this series, Keyvan talks about the unit testing concepts related to the MVC pattern and how Microsoft has adapted these concepts for its ASP.NET MVC framework. He shows these principles and the process that should be followed to unit test an ASP.NET MVC application.... Read Article.
Published on Tue, 29 Apr 2008 08:02:01 -0400 Read: 142 times
In this article Abhishek differentiates Server Activated Objects (SAO) and Client Activated Objects (CAO) in .NET Remoting. He examines the implementation procedures of these activation methods separately in Visual Basic 2005 using examples. Abhishek also provides the complete project along with the article to enable you to test drive the application... Read Article.
Published on Sun, 27 Apr 2008 08:02:20 -0400 Read: 66 times
Often it is convenient to pass a given set of values as input parameter to a cursor. It is very useful where nested cursors are used. Parameterizing the cursor makes it more usable and avoids the limitation of hard coding values in where the clause. In this code snippet, Deepankar examines this technique with the help of the relevant SQL code. He also... Read Article.
Published on Fri, 25 Apr 2008 08:02:39 -0400 Read: 98 times
Part of the business logic encapsulated in the Typed DataSet is the ability to add specialized queries to the table adapters to retrieve the data with different filters. By manipulating the XML schema that defines the dataset and adding the correct XML metadata, Visual Studio will generate the added queries for us. In this article, filtering queries... Read Article.
Published on Tue, 22 Apr 2008 08:02:21 -0400 Read: 116 times
Insufficient VM LAN connectivity in the development of SharePoint solutions may cause developers to lose valuable time and peak development capabilities. This article provides reasons and steps to configure the most valuable VM LAN connectivity practices with the help of relevant steps and screen shots.... Read Article.
Published on Sun, 20 Apr 2008 08:04:58 -0400 Read: 127 times
This article explains basic options available to access the data present in a parent browser window from a child browser window or vice versa.... Read Article.
Published on Sun, 20 Apr 2008 08:02:20 -0400 Read: 80 times
The toughest set of data to obtain for geocoding is a zip code to city translation.
Unfortunately, the USPS treats zip data as a trade secret and demands licensing fees for distribution which makes creating a free geocoder a little harder.
You used to be able to obtain a decent city to zip mapping from the FIPS55 data set. However, the FIPS folks were... Read Article.
Published on Thu, 17 Apr 2008 08:02:30 -0400 Read: 72 times
After two kids and a long break I'm finally working on the new geocoder.
All the previous realeases have been rendered moot due to change in the way the census releases the data.
Frankly, this is one of the reasons I took such a long break from it since they announced several years ago this was going to happen.
As we speak I've completed about... Read Article.
Published on Wed, 16 Apr 2008 08:02:41 -0400 Read: 104 times
In this article, Brian explores the client-side programming aspect of the ASP.NET AJAX Framework. He will look at setting up client-side components that represent server-side counterparts, and an introductory leading into developing control extenders with the help of relevant code sample. Brian initially provides an overview of Application Namespaces... Read Article.
Published on Tue, 15 Apr 2008 08:02:42 -0400 Read: 78 times
In this article Deepankar discusses how to select records from an Oracle 9i table without using ROWNUM. Deepankar provides a detailed analysis of each SQL statement along with the screenshot of the final output.... Read Article.