Archive for January, 2009

LINQ (Language Integrated Query)

LINQ (Language Integrated Query)
 
LINQ is great feature .NET is providing us, Using LINQ we can filter, sort and traverse collections object, actually you can make use of SQL (Structured Query Language) syntax in .NET to filter or sort or traverse collection object
 
Syntax:
 
IEnumerable<T> var = from obj in CollectionObj
                                                Where condition
                                                Order by obj
                                                Select [...]

What’s New in ASP.NET 3.5 AJAX

ASP.NET 3.5 AJAX giving us some very useful controls, using which you can implement AJAX very easily.
Below are the some of the controls
l       ScriptManager
•          Main control for AJAX implementation,
•          Identifies the scripts sent to browser (debug / release)
•          EnablePartialRendering property will be used to enable partial page updates (needs at least one updatepanel [...]

ASP.NET Blog For you

Hi Friends,
It’s very happy to announce the starting of new blog on ASP.NET . This blog is dedicated to have latest asp.net technical information, troubleshooting tips, coding best practices, code snippets, ideas and many more. I would like everyone to use this site for sharing your knowledge with the rest of your world. You can [...]