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_ThemesWebプロジェクトからすべてのテーマを取得するにはどうすればよいですか?
App_Themes
すべてを取得してドロップダウンリストに入れたいと思います。
そのようなものはあなたにテーマ名のリストを与えるでしょう:
var path = Server.MaPPath("~/App_Themes"); var list = Directory.GetDirectories(path) .Select(folder => new DirectoryInfo(folder).Name) .ToList();