Click here to Skip to main content
15,867,756 members
Articles / Programming Languages / C#
Article

Custom Control using C# For Virtual Directory in IIS

Rate me:
Please Sign up or sign in to vote.
4.84/5 (19 votes)
16 Dec 2007CPOL2 min read 58.9K   425   37   10
This is a Windows based Custom control to Create, Delete Virtual Directory in IIS and we can set all properties like default page, ASP.NET version, Authentication Type through it.
Screenshot - form.jpg

Introduction

This is a Windows based Custom control to Create, Delete Virtual Directory in IIS and we can set all properties like default page, ASP.NET version, Authentication Type through it. Sometimes it is very difficult to create a virtual directory in IIS to deploy a Web site using codes. This is a very simple control using which we can create as well as set all other properties of IIS. We can also run the webpage directly from the control.

Background

For Creating Virtual Directory in IIS we need System.DirectoryServices.dll. We need System.ServiceProcess.dll for interacting with IIS services.

This is a Custom Control that inherits from Components.

Designing

Screenshot - VirtualDirClass.pngThis custom control is totally based on some methods and properties. If we check the Class Diagram of the Virtual Directory class, it has some methods like CreateVDir(), Delete(), StartIIS(), StopIIS(), and some properties like AccessRead, AccessWrite, etc.

Now we can simply create an object of the Control class and create the Virtual Directory.

By default, all properties are set to true and the default page should be default.aspx. We can change all these properties in runtime too.

Screenshot - Properties1.jpg

If we want to change the default document, that means if our first page is index.html, we can use it in this way. This will set the default page corresponding to that Virtual Directory:

Screenshot - defaultdoc.jpg

ASP.NET Version Change : One of the main parts of Web page deployment is to assign the current ASP.NET version and we can do it very simply using the following method:

Screenshot - aspnetversion1.jpg

Using the following methods, we can create, delete Virtual Directory in IIS and we can use it to open webpage in IIS using that:

Screenshot - AllMethods1.jpg

Using the Code

C#
// This is the simple code from where we are using the Control
VirtualDirLib Vdir = new VirtualDirLib(); // Create Object 
Vdir.DefaultDoc = "index.html";           //Set Default page
Vdir.AuthNTLM = false;                    // Set Security
Vdir.CreateVDir(System.Environment.MachineName, "D:\\Myweb", "Sample");
Vdir.SetAspNetVersionIIS();               // Set ASP.NET version
Vdir.InvokeVDir();                        // Run Web page
//Some Property  Settings
/// <summary>
/// Virtual Directory Class
/// </summary>

[System.Drawing.ToolboxBitmap("vdir.ico")]
public partial class VirtualDirLib : Component

{
#region PropertyVariable
private bool accessRead=true;
private bool accessWrite=true;
private bool accessExecute=true;
private bool dirBrowsing=true;
private string defaultDoc="Default.aspx";
private bool enableDefaultDoc=true;
private bool authBasic=false;
private bool authNTLM=false;
private bool authAnonumus=true;
#endregion 

/// <summary>
/// Provide Access Write To VirtulDirectory
/// </summary>
[Description("Set AccessWrite Permission")]
public bool AccessWrite
{
get { return accessWrite; }
set { accessWrite = value; }
}

/// <summary>
/// Execute Permission To Virtual Directory
/// </summary>
[Description("Set AccessExecute Permission")]
public bool AccessExecute

{
get { return accessExecute; }
set { accessExecute = value; }
}

/// <summary>
/// Allow Directory Browsing
/// </summary>
[Description("Set Directory Browsing Permission")]
public bool DirBrowsing
{
get { return dirBrowsing; }
set { dirBrowsing = value; }
}

/// <summary>
/// Set The Default pages like index.html
/// </summary>
[Description("Set Default Documents")]
public string DefaultDoc
{
get { return defaultDoc; }
set { defaultDoc = value; }
}

/// <summary>
/// Enable the default document settings
/// </summary>
[Description("Enabled Default Documents")]
public bool EnableDefaultDoc
{
get { return enableDefaultDoc; }
set { enableDefaultDoc = value; }
}

/// <summary>
/// Set Anonymous Authentication True or False
/// </summary>
[Description("Set Anonumus Authontication mode")]
public bool AuthAnonumus
{
get { return authAnonumus; }
Set { authAnonumus = value; }
}

/// <summary>
/// Set Basic Authontication True or False
/// </summary>
[Description("Set Basic Authontication")]

public bool AuthBasic
{
get { return authBasic; }
set { authBasic = value; }
}

/// <summary>
/// Set Integrated Windows Authentication True or False
/// </summary>
[Description("Set Integrated Authontication mode")]
public bool AuthNTLM
{
get { return authNTLM; }
set { authNTLM = value; }
}

/// <summary>
/// Give the Read Access Permission 
/// By Default : True
/// </summary>
[Description("Set AccessRead Permission")]
public bool AccessRead
{
get { return accessRead; }
set { accessRead = value; }
}

// Code For ASP.NET Version Set
/// <summary> 
/// It will Changes The Scriptmaps and Set IIS ASP.NET Version 
/// </summary> 
public void SetAspNetVersionIIS()
{
try 
{
string _frameWorkDir;
string _Dir;
string _FrameWorkVersion = Environment.Version.ToString();
_Dir = System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory();
int dirpos = _Dir.Remove(_Dir.Length - 1, 1).LastIndexOf(@"\");
_frameWorkDir = _Dir.Remove(dirpos, _Dir.Length - dirpos);
_frameWorkDir = _frameWorkDir + @"\v" + _FrameWorkVersion + @"\";
Process pro = new Process();
pro.StartInfo.UseShellExecute = false;
pro.StartInfo.RedirectStandardOutput = true;
pro.StartInfo.RedirectStandardError = true;
pro.StartInfo.FileName = _Dir + "aspnet_regiis";
pro.StartInfo.Arguments = @"-s " + @"/W3SVC/1/Root/" + _strServerName;
pro.Start();
pro.WaitForExit();
}
catch (Exception frm)
{
MessageBox.Show(frm.Message);
}
}

References

Points of Interest

I used XML documentation at the time of creating this control, so that it is very understandable to the user and it's very simple to use.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband

Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

Comments and Discussions

 
QuestionNeed Help Pin
krishnamzp9-Sep-09 21:19
krishnamzp9-Sep-09 21:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.