Hello,
I was recently asked to create a report listing all aspx files in an VS 2005 web aplication project.
I was able to count the number of static pages in the project easily using Visual Studios regular expression search box where i filtered on finding all file names with an *aspx extension.
The next challenge lay where i was asked to also include all pages with unique parameters.
:i.e.: for a page called dynamicpage.aspx - it can load normally without parameters but it also contains two sets of parameters like so: dynamicpage.aspx?param1=x and dynamicpage.aspx?param1=x¶m2=y - therefore this page needs to be listed 3 times in the report list i need to create.
Whats the best approach for counting aspx files with various different parameters like above?
If this isn't clear enough let me know
Thanks