if i have a page called page23.asp i can get the 23 by using the following code:
Page = mid((request.servervariables("PATH_INFO")), 6, 2)
However what if the page were called page1.asp or page123.asp it would then return the incorrect result, what can i do so that i get the full number?