如何创建.aspx页面列表?

时间:2012-04-08 11:39:12

标签: c# .net drop-down-menu filesystems

我需要在Web用户控件(.NET 4.0,C#,Web窗体)中创建下拉列表。

此列表应该是MyPages文件夹中的.aspx列表,放入我的Web应用程序。

我该如何创建它?我需要阅读文件夹>文件还是有更好的方法?

1 个答案:

答案 0 :(得分:8)

这样的事情应该有效:

DirectoryInfo directoryInfo = new DirectoryInfo(Server.MapPath("/MyPages"));
FileInfo[] fileinfo = directoryInfo.GetFiles("*.aspx");

// do data binding here