Chrome search bar displays server while typing

So here's the deal: I have a user authenticated with OWIN, and when authenticated this way, this particular type of user is only allowed to see one page on the site. If they try to get to other pages, or even refresh the current page, they will be thrown back to the login page.

This is an AngularJS app, so only MVC is used for the initial view. Hence, if the user manages to come back here and is still logged in, I sign it and update.

Everything works fine, but here's the weird part: if I start typing in the Chrome address bar, the server hits ( HomeController.Index()

), which generally doesn't affect the client side unless you sign the logged in user to Index()

, in which case, once you start typing the address bar, it will take you back to the login page. Also, I don't see anything in the debugger's network tab when this happens.

This behavior doesn't seem to be present in Firefox or IE, does anyone have an explanation?

Edit: To clarify, I have a breakpoint at Index()

, I click on the address bar, start typing (just one or two characters), the breakpoint is hit.

+3


source to share





All Articles