Try prepending http://
to that URL. Edge seems to be parsing localhost
as the URI scheme, which is why Windows can't find an app to open it with - there is probably no application on your machine registered to localhost
.
http://localhost:51531/MyMessages/Index
It might seem like a no-brainer to infer http://
, but keep in mind that navigating to e.g. file://C:\Users\[Username]\Desktop\document.txt
in any web browser will open the file - so when the browser sees something that looks like a URI scheme (like localhost:51531
), it does make sense to assume it is one.
The "You'll need a new app to open this" dialog appears when a URL is entered with a scheme that has not been registered to an application. An example of a custom application-specific scheme is the steam://[appid]
URL scheme, or the mailto://[address]
scheme often used by i.e. Outlook.
(See also What is a URI scheme?)
http://localhost:51531/MyMessages/Index
? Orhttp://localhost:51531/MyMessages/
? – Blatanthttp://
to that URL. It seems to be parsinglocalhost
as the protocol, which is why it can't find an app to open it with - there is probably no application on your machine registered for the "localhost
protocol". – Militia