Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Custom Control using C# For Virtual Directory in IIS

0.00/5 (No votes)
16 Dec 2007 1  
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.png This 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

// 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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here