Click here to Skip to main content
Licence CPOL
First Posted 13 Nov 2007
Views 26,850
Downloads 180
Bookmarked 35 times

Custom Control using C# For Virtual Directory in IIS

By | 16 Dec 2007 | Article
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Abhijit Jana

Software Developer (Senior)

India India

Member

Follow on Twitter Follow on Twitter
.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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionNeed Help Pinmemberkrishnamzp21:19 9 Sep '09  
GeneralIIS 6 on Vista Ultimate 64 bit PinmemberFrankenstien28:34 25 Dec '08  
GeneralRe: IIS 6 on Vista Ultimate 64 bit PinmemberAbhijit Jana18:26 25 Dec '08  
GeneralNo sample PinmemberAazzin14:56 6 Apr '08  
GeneralRe: No sample PinmemberAbhijit Jana18:35 6 Apr '08  
GeneralRe: No sample PinmemberAazzin8:25 7 Apr '08  
GeneralRe: No sample PinmemberAazzin8:56 7 Apr '08  
Generalicon change for components !! PinmemberAbhijit Jana4:58 13 Nov '07  
GeneralRe: icon change for components !! PinmemberN a v a n e e t h20:51 15 Nov '07  
I would have tried this, but unfortunately your article comes without any source code !
 
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia

My Website | Ask smart questions

GeneralRe: icon change for components !! PinmemberAbhijit Jana0:38 16 Nov '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 17 Dec 2007
Article Copyright 2007 by Abhijit Jana
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid