Is there a method to get all of the .aspx files in my website? Maybe iterate through the site's file structure and add to an array?
|
feedback
|
| |||
|
feedback
|
|
using Directory.GetFiles("*.aspx"), you can get all the files in the directory. And you can make it recursive to grab any sub directories and their files. | |||
|
feedback
|
|
Keep in mind that you can define an .aspx page without having an actual file be there in the web.config. | |||
|
feedback
|