I'm simply entering "MyMessages/Index" after localhost:51531/ and this popup is being displayed. Seems super weird to me but probably something simple.
So I try to navigate to localhost:51531/MyMessages/Index
in Edge.
The controller is public class MyMessagesController : Controller
The controller action is just:
public IActionResult Index() { return View(); }
Any idea why this is happening?
This does not happen in IE11
The issue is that you have left the scheme off the start of the URL. Some browsers will infer it in certain circumstances, but not all browsers will infer it all the time.
Instead of:
localhost:51531/MyMessages/Index
Try:
http://localhost:51531/MyMessages/Index
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With