Knowledge Transfer

Thursday, September 25, 2008

Visual Studio Magazine for all c#.Net,asp.net and new technologies.

http://visualstudiomagazine.com/portals/portal.aspx?portal=67

Happy Coding

Labels: , ,

Creating Collapsible Detail Regions in a Repeater

Showing and Hiding Content Through Client-Side Actions.

Collapsible Repeater Controle Example Avialble here.

http://aspnet.4guysfromrolla.com/articles/091504-1.aspx

Happy Coding

Labels: , , , , ,

Working with Web Services Using ASP.NET

XML Web Services provide a simple technique for accessing a method on an object that is running on a local or remote computer. Web Services can be accessed by an application written in any language and running on any operating system. They utilize HTTP as the underlying transport, which allows function requests to pass through corporate firewalls (as they move through port 80). In ASP.NET we can write a Web Service as simple as a normal business object and the only difference is that the functions are preceded with a special attribute that makes them as Web Services. Typical implementation of Web Services might include shipment tracking, credit card verification, searching for airfare rates, Weather forecasting, etc.

http://aspalliance.com/979_Working_with_Web_Services_Using_ASPNET.all

Happy Coding

Wednesday, September 24, 2008

Modal window for asp.net with ajax

Introduction of AJAX Control Toolkit has opened many interesting possibilities for developing rich UI in ASP.NET. Add an awesome IDE like Visual Studio to it, and you can get astounding results without doing much.

In this article we will see how to enhance client side validators using AJAX Control Toolkit. Given below are screen shots of what we are trying to achieve. The whole purpose is to improve user experience with very little effort

http://ashishware.com/ASPValid.shtml

Thursday, September 18, 2008

What's New in C# 3.0

On the heels of the Visual Studio 2005 and C# 2.0 releases, Microsoft has given a sneak preview of what to expect in the version after the next: C# 3.0. Even though C# 3.0 is not even standardized yet, Microsoft provided a preview release at its Professional Developers Conference (PDC) in September so eager developers could try out some of the expected features. This article discusses the following major new enhancements expected in C# 3.0:

Implicitly typed local variables
Anonymous types
Extension methods
Object and collection initializers
Lambda expressions
Query expressions
Expression Trees


For More Click this linkhttp://www.developer.com/net/csharp/article.php/3561756

Happy coding

ABOUT INFRAGISTICS



As the world leader in user interface development tools, Infragistics empowers developers to build and style immersive user experiences and rich data visualization in line of business applications across all platforms — Windows Forms, WPF, ASP.NET, Silverlight and JSF.



We understand it isn't enough to make great products so we supply a range of value-added services including UI testing tools, support, training and consulting services.

http://www.infragistics.com/

Happy Coding

Tuesday, September 16, 2008

Threading in C#.Net

C# supports parallel execution of code through multithreading. A thread is an independent execution path, able to run simultaneously with other threads.

A C# program starts in a single thread created automatically by the CLR and operating system (the "main" thread), and is made multi-threaded by creating additional threads. Here's a simple example and its output:

http://www.albahari.com/threading/#_Introduction

Happy Coding