C# Articles (379) - Page 21

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.

379 records found.
 
Naimishforu
The Web Forms Events Model - Web Forms in C# Part 3 
Last updated on: 14 Feb 2011 09:39:15 AM by Naimishforu | Views: 7356 | Category: C# |
Votes: 1 | Rating: 5 out of 5
We will look into The Web Forms Events Model
Tripati_tutu
How to create a Notepad application 
Last updated on: 13 Feb 2011 05:18:34 AM by Tripati_tutu | Views: 58586 | Category: C# |
In this article, I have explained the procedure to create a notepad application.
Naimishforu
The Page class - Web Forms in C# Part 2 
Last updated on: 10 Feb 2011 10:52:36 AM by Naimishforu | Views: 9133 | Category: C# |
Votes: 1 | Rating: 5 out of 5
This article introduce the Page class of ASP.NET Web Forms and explains some of the useful properties.
Naimishforu
Web Form layout and logic - Web Forms in C# Part 1 
Last updated on: 09 Feb 2011 11:32:11 AM by Naimishforu | Views: 12699 | Category: C# |
Web Forms are a part of ASP.NET that allows you to build interactive web applications using C# or any .NET-compliant language.
Ganeshji
Difference between ref and out parameter 
Last updated on: 20 Jan 2011 01:00:02 AM by Ganeshji | Views: 15926 | Category: C# |
Votes: 2 | Rating: 5 out of 5
Recently, I have come across a query in a forum. The query was something like 'difference between ref and out parameters'. Hence, I have just tried to point out the difference between the two.
SheoNarayan
Sending and receiving message in MSMQ using C# 
Last updated on: 10 Jan 2011 08:01:06 AM by SheoNarayan | Views: 278145 | Category: C# |
Votes: 1 | Rating: 5 out of 5
This article describes how to send and receiving messages in MSMQ using C#.
Esensahoo
Practical Use of Delegate in real time Application -1 
Last updated on: 02 Jan 2011 03:15:20 PM by Esensahoo | Views: 64780 | Category: C# |
Votes: 3 | Rating: 4.67 out of 5
This article describes how can we use a delegate in a real time application to build dynamic components. I will write this article in two phases and the first phase goes here.
  • Esensahoo
    A programmatic close look at constant and read-only variables in C# 
    Last updated on: 05 Jan 2011 11:15:47 AM by Esensahoo | Views: 13826 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    Many time we get question in interview that what is the difference between constant and readonly.I have listed out most of the difference and to make it more clear I have also given sample code/steps to test every point in this comparison. I hope this will be useful.
    Chvrsri
    Creating a Windows Service Using C# 
    Last updated on: 15 Dec 2010 08:45:41 AM by Chvrsri | Views: 62920 | Category: C# |
    Votes: 5 | Rating: 5 out of 5
    Windows Services is the most important feature for the long standing applications to run services automatically soon after the system boots.We can manually control these Services by starting and stoping at a specific time.
    Chvrsri
    Accessing a Method of aspx page into a User Control 
    Last updated on: 14 Dec 2010 02:12:43 AM by Chvrsri | Views: 23731 | Category: C# |
    Votes: 5 | Rating: 3.8 out of 5
    In this small article I am going to explain how to access a method of .aspx page into an UserControl.
    Chvrsri
    Restricting User To Login Multiple Times Using Same Credentials 
    Last updated on: 29 Nov 2010 08:28:58 AM by Chvrsri | Views: 101229 | Category: C# |
    Votes: 5 | Rating: 4.6 out of 5
    Generally in many websites after you get logged in you will be redirected to home page. While this page is running if the user selects the new window and open the Login page again and if he provides the same credentials which was provided earlier then he will be automatically redirected to home page. But in this article I am going to explain how to restrict this if you consider the examples of gmail.com or yahoo.com once in a particular user is logged in they won’t restrict the user but here I will provide that feature and check whether if a particular user is logged in I will display it as already logged in.
    Chvrsri
    Multiple Row Deletion From GRIDVIEW 
    Last updated on: 27 Oct 2010 03:35:07 PM by Chvrsri | Views: 9590 | Category: C# |
    Votes: 3 | Rating: 3.33 out of 5
    Hi in this article iam going to show how to delete multiple rows in a gridview. In this i made more simpler by accessing SQL DataSource .
    Baldi
    Copy a table using SQL Server Management Objects 
    Last updated on: 01 Oct 2010 04:01:51 AM by Baldi | Views: 8659 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    SMO allows you to manage all objects which lives in the Microsoft SQL Server. It allows you to create, drop or alter objects from your .NET application with a API which is really easy to use.
    Abhi2434
    Use of Expression Trees in .NET for Lambda Decomposition 
    Last updated on: 05 Sep 2010 06:36:26 PM by Abhi2434 | Views: 19396 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    Expression Trees comes very handy when you want your lambda expression to be evaluated only when the object needs it to be compiled. Generally when we pass an annonymous delegate it builds the entire Expression Tree and C# is capable of building the expression at runtime. In this article I will explain how you could decompose an expression into an Expression Tree
    Anup1252000
    Parallel Compting in C# 4.0 
    Last updated on: 10 Aug 2010 10:43:31 AM by Anup1252000 | Views: 17929 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    In this article, you will see how to use Parallel Computing in c#