Specific search criteria

I have a very large site that at one point I changed the security provider login page. I originally had a login.asp page that I needed to refer to but now it needs to be mylogin.asp.

So if I am searching for all pages that have login.asp, it is still returning results with mylogin.asp also as it has part of the same name. Is there a way to fine tune the search?

Quick way to cut a lot out is usually you reference as part of a path or in quotations so search for:
"login.asp
or
/login.asp

you could then replace with
"mylogin.asp
or
/mylogin.asp

yeah that actually makes sense. I’ll give that a spin.