悬赏园豆:200
[已关闭问题]
关闭于 2007-12-29 10:11
<P>两站点都在一台服务器上。</P>
<P><A href="http://www.a.com">www.a.com</A>下的程序咋获取b.a.com/test.htm的路径</P>
<P> </P>
问题补充:
是的。在www.a.com的update.aspx页要能修改每个二级域名站点下的html文件。。全在一台服务器上
用DirectoryEntry嘛。试了N次终于灵了
/// <summary>
/// 操作iis获取所有网站的实际路径。
/// </summary>
private static void getwebsitedir()
{
DirectoryEntry ent = new DirectoryEntry("IIS://localhost/w3svc");
foreach (DirectoryEntry child in ent.Children)
{
if (child.SchemaClassName == "IIsWebServer")
{
string key = child.Properties["ServerBindings"].Value.ToString().Split(':')[1];
string value = new DirectoryEntry("IIS://localhost/W3SVC/" + child.Name + "/ROOT").Properties["Path"].Value.ToString();
hs.Add(key, value);
}
}
}
小妮爹
|
初学一级
|
园豆:
6
提问于:2007-12-26 12:25