在我的代码中,我要感谢良好的路径,在我的 IIS 服务器中打开文件 Index.html。
我实际上正在使用这个:
string path = "C://inetpub//wwwroot//Files//Wireframes//" + ((LinkButton)sender).ID;
System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(path);
System.IO.FileInfo[] fiArr = di.GetFiles("*", SearchOption.TopDirectoryOnly);
foreach (System.IO.FileInfo thefile in fiArr)
{
if (thefile.Name == "index.html")
{
System.Diagnostics.Process.Start(path + "/index.html");
}
}
}
我想知道为什么它在本地工作,但是当我把我的项目放在我的服务器上时,这没有做任何事情。