Having trouble reading this e-mail? Read this or any of our past issues in our online Newsletter Archive.
22nd April 2008
ASPAlliance Times
The industry newsletter for Active Software Professionals
Sponsor Advertisement
TECHbash 2008 "Don't Miss It!"

Since its inception in 2005, TECHbash has evolved into the premier technology conference in Northeastern Pennsylvania. Join an estimated 300 Developers, IT Professionals, CIO’s and Industry Experts from Maryland, New Jersey, New York, and host-state, Pennsylvania. This one day event brings together a broad spectrum of Technology Professionals to network, knowledge share and discuss existing technology solutions to business challenges, as well as preview prerelease products on the bleeding edge.

This year, we expanded to three tracks offering more presentations and providing you with more content choices representing a greater breadth of Industry insight. We will open the event with a keynote presentation from the unstoppable juggernaut, Joe Stagner, Program Manager for Microsoft’s Web Tools and Platform Division.Attendees will have the opportunity to:

  • Enhance technical knowledge with comprehensive and relevant educational content
  • Build experience on current and soon-to-be released technologies and products
  • Engage with sponsors, presenters, and other technology professionals
  • Learn how to get involved with .NET Valley, Northeastern Pennsylvania’s Technology User Group
  • Leave with software and other swag

For more information and to register for the event, visit the TECHbash website at techbash.com

Featured Article
 
AJAX Client Side Programming
By Brian Mains, 16th April 2008
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 and then examines the various helper methods. Towards the end of the article he also discusses ASP.NET Client Framework Development and Web Services. The article is well supported by relevant code snippets with detailed analysis.
Editor's Comments
 
By Steven Smith

During this transition time between .NET 2.0 and .NET 3.5 we are seeing plenty of people adopting LINQ. It is a very powerful tool, and it has been seeing plenty of adopters lately. If you have not tried LINQ yet, I suggest you give it a shot. Grab LINQPad and start using it to write LINQ. If you really want to learn LINQ I recommend you take the LINQPad Challenge which basically asks you to use LINQPad instead of SQL Server Management Studio for a week. Give it a shot. Perhaps you’ll find you like LINQ as much as so many others do.

var query = from p in readers
    where p.DesireToLearnLINQ == 1
    select p;
foreach (var person in query)
{
    StartUsingLINQPad(person);
}
New Articles on ASPAlliance.com
Configuring SharePoint Virtual Machine LAN Connections
By Steven Barden , 21st April 2008
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.
Video: Compressing HttpResponse Using ASP.NET MVC Framework
By Mohammad Azam , 21st April 2008
In this video Mohammad Azam demonstrates how to compress HttpResponse using ASP.NET MVC Framework. He uses Fiddler to demonstrate the changes made by the compression. [7:00]
Sponsor Advertisement
Need realistic database test data?

SQL Data Generator creates realistic MS SQL Server database test data in one click. Michael Gaertner of Quintech was impressed: "With SQL Data Generator, I generated better data in only half an hour, and after initial customization, in only seconds with just one click." Download a free 14-day fully functional trial of SQL Data Generator

ASP Alliance Authors' Recent Blog Entries
Reliable Messaging at CODODN
James Bender
Microsoft versus Open Source Software - ALT.NET notes
scott
We now have a team blog...
rahulso
Using multiple config files in one application
Keith Barrows
New Boulder Colorado Microsoft Data Center
David Yack
Techbash - Pennsylvania (not Transylvania I'm afraid - so no blood sucking Java Developers)
Phil Winstanley
"Gonna go ahead and..." Please, stop!
Jeff
DeveloperDeveloperDeveloper UK - November 22nd 2008
Phil Winstanley
.NET 3.5 Enhancements Training Kit
BilalHaidar [MVP]
Useful GridView Tips
Q1 2008 - New Telerik Release
BilalHaidar [MVP]
How to configure IIS 7.0 for ODBC logging?
Creating Better FindControl Method
Mohammad Azam
Using LINQ Objects Wisely, Part 1
bmains
Securing your network using Microsoft Windows DHCP
Copy Group Policy Settings.
MCTS in WCF
Glav
ASP Alliance Most Popular Articles
Make Reports Quickly With ASP.NET and XML
By Andrew Mooney , 7th July 2004
Sometimes you need to create reports quickly. You might not always have time to format fancy reports containing graphs. Or maybe you have to create reports that do not need graphs. Reusing one ASP.NET web page you can display many reports.
Dynamically Templated GridView with Edit, Delete and Insert Options
By G Mohyuddin , 22nd January 2007
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 ITemplate interface.
ASP.NET Performance Tips
By Adiseshu Dasari , 9th January 2008
This article provides some tips to improve the performance of your ASP.NET applications by using multiple recordsets, paged data access, and Cache API. The author further examines Per-request, Page output, and Kernel caching mechanisms along with a description of connection pooling and GZip compression.
Detecting ASP.NET Session Timeouts
By Robert Boedigheimer , 27th September 2004
Determine if a user's Session is still active.
Populating a DropDownList using AJAX and ASP.NET
By Ramaprasad Potturi and Sanjay Patnaik , 6th September 2005
AJAX is the latest buzzword in the web development industry. But what is it, and how can you use it? Ramaprasad Potturi and Sanjay Patnaik explain the technology and provide a real-world example of a web page that presents a country and state pair of drop-down lists, where the state drop-down list is populated dynamically on the client side, removing the need for the page to post back to the server.
Crystal Alliance Recent Articles
Six Quick Crystal Reports Design Tips
By Jeff McWherter , 27th February 2008
Creating reports can be a daunting task. Reports can demand a great deal of effort and time, especially if you have not worked with Crystal Reports much. In this article, Jeff provides six quick Crystal Reports Design Tips to assist in creating killer reports with style and speed. Among other tips, you will learn how to add WaterMarks to your reports. Each tip has been deeply examined with the help of relevant explanations and screenshots for better understanding.
What Visual Studio Developers Should Know About Crystal Reports 2008
By Julia Lerman , 28th January 2008
Crystal Reports 2008 was released in October 2007. This article (written in Jan 08) explains the ins and outs of the CR2008 versions, integration with VS versions, side-by-side compatibility, upgrading reports and general features of interest to Visual Studio Developers.
Review: Crystal Reports Encyclopedia (Professional XI Reports)
By Eric Landes , 27th December 2007
In this review, Eric starts with a basic introduction and layout of Brian's Crystal Reports book. He then provides chapter wise detailed opinion of the contents and also some of his recommendations.
SQL Server Reporting Services Recent Articles
Creating Agile Project Reports with TFS and Reporting Services - Part 2
By Eric Landes , 7th April 2008
In this second part of the series, Eric shows the reader how to create a burndown chart using Reporting Services, Visual Studio 2008, and Team Foundation Server (TFS) 2008 for an agile project. After giving a short introduction and the requirements, he examines the creation of burndown reports with the help of relevant SQL statements and screen shots.
Creating Agile Project Reports with TFS and Reporting Services - Part 1
By Eric Landes , 19th February 2008
In this first part of the series, Eric shows the reader how to create two reports using Reporting Services, Visual Studio 2008, and Team Foundation Server (TFS) 2008 for an agile project. After giving a short introduction and the requirements, he examines the creation of scenario story report with the help of relevant SQL and screen shots.
Using Local Microsoft SQL Server Reporting Services in ASP.NET
By Shaun Eutsey , 12th July 2007
This article examines the steps the author took to make the local reports work using Microsoft SQL Server Reporting Services in ASP.NET.
Sponsor Advertisement
Find the Regular Expression you need in a snap at RegExLib.com -- now with an all new design!

RegExLib.com is the first Regular Expression Library on the Internet. It has over 1900 expressions from more than 1100 contributors around the world. The expressions are indexed by helpful categories such as Email, Strings, Dates and Times, Address/Phone, etc. and they’re fully searchable by keyword, category and user ratings. Whether you simply want to find and copy the right expression or get help from the community to write your own, the newly designed RegExLib.com makes it fast, easy and free. Check it out today!