Guest User

Untitled

a guest
Jan 15th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. DirectoryEntry de = new DirectoryEntry("IIS://localhost/W3SVC");
  2. foreach (DirectoryEntry child in de.Children)
  3. {
  4. if (child.SchemaClassName == "IIsWebServer")
  5. {
  6. Response.Write(child.Properties["ServerComment"].Value + "<br/>");
  7. }
  8. }
Add Comment
Please, Sign In to add comment