Lets say I have an absolute url /testserver/tools/search.aspx that I store in a variable url.
I want to check if url == /tools/search.aspx without having to use /testserver.
A more complete example would be:
My testserver contains the url http://www.testserver.com/tools/Search.aspx,
but my live server contains the url http://www.liveserver.com/tools/Search.aspx
If I compare a variable url which stores the testserver url to the liveserver url, it will fail, thats why I want to just check the /tools/Search.aspx portion.