Issue with EDGE browser

Debjyoti Bose 1 Reputation point
2022-11-29T13:50:41.153+00:00

We have an application running in ASP.Net (.Net Framework 4.8).
When we are accessing the application from IE 11 it works perfectly ok but using Microsoft Edge browser we are prompted with an message as show below.

This is happening after saving(posting) the form data with an alert message, confirming the user that the transaction is successful.
Once the user click the alert window ok button this message appears
265160-edgebrowerissue.jpg

Microsoft Edge Microsoft Edge development
{count} votes

1 answer

Sort by: Most helpful
  1. Michael Taylor 60,161 Reputation points
    2022-11-29T16:02:28.447+00:00

    Looks like a scripting issue. Run your app in the debugger with Edge as the target browser. Then replicate the issue. Once you do that then you'll be able to see where the delay is. If it is on the server side then this probably has nothing to do with the browser. More likely you have client side scripting problems. To see those use the developer tools (F12) and look at the console window. It should show you if there are errors. If you don't see any then go to the Network tab and refresh. If you see a request hanging then the issue is between the client and server.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.