In our web application (asp.net), the tabs are dynamic links. The links were built like this:
finalUrl = "https://" + Request.Url.Host + "/home.aspx";
The link is ended up like:
https://server0/home.aspx
The problem is the web server's name was server0, but now it was changed to server1. Still the old server name keeps showing up. Can anyone help point out where we missed?
(etc/hosts has correct setting)
Thanks!