Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从App_Themes我的 Web 项目中获取所有主题?
App_Themes
我想获得所有这些并放入下拉列表中。
类似的东西会给你主题名称列表:
var path = Server.MaPPath("~/App_Themes"); var list = Directory.GetDirectories(path) .Select(folder => new DirectoryInfo(folder).Name) .ToList();