Just got a huge (multi-hundred page) Classic ASP site. Is there an easy – or relatively easy – way to find out which pages aren’t referenced by others? I’ve isolated any that run standalone.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are interested in files that are included I would use grep and concentrate on the phrase
<!--#includeand cross reference this with active ASP pages in the ones you’ve identified and the IIS logs. I wouldn’t remove them for a few weeks but add extra code to track if they have loaded via the event log or similar, ensuring that you don’t delete any you shouldn’t. Ones that don’t get tracked you know you are safe to move/delete etc…