我需要在Web用户控件(.NET 4.0,C#,Web窗体)中创建下拉列表。
此列表应该是MyPages文件夹中的.aspx列表,放入我的Web应用程序。
我该如何创建它?我需要阅读文件夹>文件还是有更好的方法?
答案 0 :(得分:8)
这样的事情应该有效:
DirectoryInfo directoryInfo = new DirectoryInfo(Server.MapPath("/MyPages"));
FileInfo[] fileinfo = directoryInfo.GetFiles("*.aspx");
// do data binding here