Listing Domains, Groups, Schemas, User, Computer from DirectoryEntry
To list the Domains and their respective Groups, Schemas, User and Computer use DirectoryEntry and enumerate through the Children of the respective Entry. Check out the following code for more...
View ArticleNetstat in C#
Check out how to perform Netstat command functions of DOS in C#. It will list you all the current network connections of your System using System; using System.Net; using System.Net.NetworkInformation;...
View ArticleSample weather forecast WCF application.
Here is one WCF webservice sample developed for weather forecasting. Two projects are include one is web application another one is wcf application. Download and check out Weather Forecast WCF Sample
View ArticleXML Serialization
Some time we need to save the data in the files which is nothing but the details of the object. For example i am having a application doing vector drawing and i want to save the details of the line...
View ArticleSearch your website (Microsoft Indexing Service, C#, ASP.NET)
You might have seen various website providing search capabilities to search content within their website. Implementing this in our web application is also easy and for that we have to just use the...
View ArticleListing All the references of Assembly
We can list all the references of the assembly in a recursive manner. Here i have avoided System Assemblies since those are not required & they are in circular references. Download the code from...
View ArticleCaptcha Control Sample (C#, ASP.NET, Server Control)
In various websites, Captcha control is used for validating the user input and protect web application from the program. Here is one of the sample control for Captcha. It is basic one which can be...
View ArticleDynamic Lookup & dynamic Type, C# 4.0 Part 1
C# 4.0 is out once again with new set of features. Now we will see one of the new feature of it, which is know as Dynamic Lookup. It is new approach for invoking thing more dynamically than before. It...
View ArticleNamed & Optional Parameter, C# 4.0 Part 2
In visual basic we were having optional parameter option which can help you to send only some parameter to methods and reset will take the default values. Same feature is part of C# 4.0 where you can...
View ArticleParallel Programming Framework 4.0 Part 1
Parallel Programming is a one of the major thing in discussion now a days. Framework 4.0 is having Parallel Programming as one of the major feature. As we know that now a days computers are having...
View Article