Reputation: 3716
I need list of all the pages that DotNetNuke uses as part of its functionality like:
/Login.aspx
/Admin/*
/LinkClick.aspx
etc...
How can I find this information?
EDIT: So far I have found:
/Default.aspx
/KeepAlive.aspx
/ErrorPage.aspx
/Login.aspx
/Logoff.aspx
/LinkClick.aspx
/Rss.aspx
/Sitemap.aspx
/*.captcha.aspx
/User.aspx
/Admin/*
/Host/*
/DesktopModule/*
Upvotes: 0
Views: 594
Reputation: 8943
Try going to /sitemap.aspx on your site, that will list off public pages.
You could take a look at the web.config, the handlers section, you can also check out the SITEURLS.config file, and ultimately you may simply need to do a command line search for .ASPX in the DNN directory itself, to get a full list.
It is possible for Custom modules to use their own ASPX pages, which will vary by module.
Upvotes: 2