i am trying to create virtual directory in IIS 7.0 using c#.net or vb.net,
can any one guide me with that
|
i am trying to create virtual directory in IIS 7.0 using c#.net or vb.net, can any one guide me with that |
||||
|
|
|
This page has pretty much everything you will need: |
||||
|
|
Subash, As slugster says here, this page has all that you need: http://forums.iis.net/t/1139885.aspx But if you're looking for code snippets, please find those below: You can do this with the following batch file:
For the above snippet, please make sure that the directory exists, and that the web.config is a properly formatted xml document. This can then be turned into a command console application in vb.net or c# by calling these commands as follows:
I hope this hlep, Thanks!EDIT: I found that you can do this directly with an API rather than executing external exes. Also, please note that for installing virtual directories on IIS6 vs IIS7 is different when you use the APIs. First for installing with the IIS6, you need to do the following:
But in order to do this in IIS7, you need to do this (Please note that Microsoft.Web.Administration comes from C:\Windows\System32\inetsrv\Microsoft.Web.Administration.dll):
I hope this is more helpful, Thanks! |
||||
|
|