So I have this asp.net 1.1 website running on IIS 6.0 over an intranet. I am using a different port "86" other than the default port 80 to access the website. The problem I am facing is the website works using the url http://<IP Address>:86/MyPage.aspx, however specifying just the IP Address with port number does not resolve to the website page. What configuration am I missing here ? How can i make the url=> <IPAddress>:86/MyPage.aspx resolve to my aspx page ?
EDIT :
What I want is for my users to type in <IP Address>:86/MyPage.aspx in the browser window and they should be able to access the page just like by typing in http://<IP Address>:86/MyPage.aspx
There is no default well know mapping for port 86 (unlike 80/443 which maps to http/https), so you must specify protocol portion of Url.
Note that if you are using it as page links you can specify "page relative protocol" like (notice
//in the beginning):