C#, create virtual directory on remote system
- by sankar
The following code create only virtual directory on local system , but i need to create on remote sytem ..help me..
Thanks,
Sankar
DirectoryEntry iisServer;
string VirDirSchemaName = "IIsWebVirtualDir";
public DirectoryEntry Connect()
{
try
{
if (txtPath.Text.ToLower().Trim() == "localhost")
…