Articles (2414) - Page 141

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

2414 records found.
 
Goldytech
LINQ ---> The new mantra of querying data 
Last updated on: 24 Aug 2009 09:19:32 PM by Goldytech | Views: 9524 | Category: ADO.NET |
In this post I introduce you to Linq and some of its very important features.
Questpond
.NET Best Practice No: 2:- Improve garbage collector performance using finalize/dispose pattern 
Last updated on: 24 Aug 2009 05:56:58 AM by Questpond | Views: 50584 | Category: ASP.NET |
Ask any developer which is the best place in a .NET class to clean unmanaged resources?, 70% of them will say the destructor. Although it looks the most promising place for cleanup it has a huge impact on performance and memory consumption. Writing clean up code in the destructor leads to double GC visits and thus affecting the performance multifold times. In order to validate the same we will first start with bit of theory and then we will actually see how GC algorithm performance is impacted using destructor. So we will first understand the concept of generations and then we will see the finalize dispose pattern.
Syedshakeer
Change the Background Row Color of the GridView control using MouseEvents 
Last updated on: 22 Aug 2009 06:35:18 PM by Syedshakeer | Views: 12043 | Category: ASP.NET |
By using this Article you can learn how to change BackGround Color of a Row in Gridview when user moves mouse on a particular selecting Row.
Goldytech
CRUD Operations using ADO.net Entity Framework 
Last updated on: 21 Aug 2009 07:54:13 AM by Goldytech | Views: 39288 | Category: ADO.NET |
In this post I show you how to perform CRUD operations using ADO.net Entity Framework. A sample WPF application is available for download which shows this functionality
Goldytech
Workflow Local Services using CallExternalMethodActivity 
Last updated on: 21 Aug 2009 07:52:55 AM by Goldytech | Views: 11121 | Category: WWF |
This post will teach you how you can develop local services for the workflow and call them using CallExternalMethodActivity. Sample source code included
Goldytech
Parsing Linq Queries as String with CodeDOM 
Last updated on: 21 Aug 2009 07:50:53 AM by Goldytech | Views: 11549 | Category: C# |
In this post I teach you how can you can dynamically compile any clr compliant code with CodeDom namespace. This article was orginally posted on my blog.
SheoNarayan
Passing data between layers using Generic list collection 
Last updated on: 21 Aug 2009 01:41:53 AM by SheoNarayan | Views: 80545 | Category: C# |
Votes: 1 | Rating: 3 out of 5
This simple article describes how to pass data between different layers of your application using Generic list collections.
  • Lakhangarg
    Change Icon in the Address Bar 
    Last updated on: 21 Aug 2009 12:32:26 AM by Lakhangarg | Views: 13603 | Category: ASP.NET |
    This is Basically use to change the address bar icon of your website.
    Lakhangarg
    Parameter in C# 
    Last updated on: 21 Aug 2009 12:28:53 AM by Lakhangarg | Views: 10584 | Category: C# |
    Parameters in C#: In C Sharp(C#) we can have three types of parameters in a function. The parameters can be In parameter (which is not returned back to the caller of the function), Out parameter and ref parameter (where by a reference to the variable is passed back).
    Lakhangarg
    Read Data From XML File in SQL Server 
    Last updated on: 18 Aug 2009 06:00:23 AM by Lakhangarg | Views: 19884 | Category: Sql Server |
    Read Data From XML File in SQL Server using OPENXML
    Lakhangarg
    Difference Between SCOPE_IDENTITY() and @@IDENTITY 
    Last updated on: 18 Aug 2009 05:45:47 AM by Lakhangarg | Views: 15882 | Category: Sql Server |
    Both SCOPE_IDENTITY() and @@IDENTITY will return the last identity value generated in the table.
    Lakhangarg
    XSLT (Extensible StyleSheet Language Transformations) 
    Last updated on: 18 Aug 2009 04:31:54 AM by Lakhangarg | Views: 5440 | Category: Others |
    XSL stands for Extensible StyleSheet Language, and is a style sheet language for XML documents. XSLT stands for XSL Transformations. XSL = Style Sheets for XML.
    Lakhangarg
    Language Integrated Query (LINQ) 
    Last updated on: 18 Aug 2009 04:29:19 AM by Lakhangarg | Views: 5996 | Category: Others |
    LINQ Stands for Language-Integrated Query. LINQ has a great power of querying on any source of data, data source could be the collections of objects, database or XML files.
    Lakhangarg
    HTTP Request Message Format 
    Last updated on: 18 Aug 2009 02:57:09 AM by Lakhangarg | Views: 133456 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    This Article will describe the input / output (Request / Response) message formats.
    Syedshakeer
    How to Start Mobile Application on Windows? 
    Last updated on: 18 Aug 2009 01:36:32 AM by Syedshakeer | Views: 7575 | Category: Windows Forms |
    In This article you will know how to start a mobile application on windows.