16
2012
04

Asp.Net 获取某个文件夹中的文件名,并存入到DropDownList中

//参数为指定的目录
public void FindFile(DropDownList dropList)
{
string Path = Server.MapPath("~//DbFile"); //指定在服务器上的路径
//在指定目录及子目录下查找文件,在DropDownList 中列出子目录及文件
DirectoryInfo Dir = new DirectoryInfo(Path);
...
«1»