Category Archives: C#

LINQ to SQL ?

Lately, but this afternoon i got some time to study about Linq to SQL and implemented the same in a project.   So I created a new website in Visual Studio 2008 (Asp.net 3.5 using C# )      The project contains following files -   1. A webform with grid view to show data. 2. “/App_Code/SQL” folder which contains Subscription.Dbml [...]

Also posted in Asp.net, LINQ | Tagged , , | Leave a comment

Playing around with IIS Application Pool using C#

Just thought of sharing a some useful IIS App pool functions I wrote long back in C#. Requirement was to play around with IIS v5.0/6.0 and do all settings dynamically – Note : You must have administrator priveledge to perform all IIS actions. Namespace Required using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.DirectoryServices; [...]

Also posted in Asp.net, IIS | Tagged , | Leave a comment