Error message "HTTP500: Server error detected on aspx page is exclusive to Edge browser."

Recently, I've been working on configuring the website to be compatible with various browsers. Initially, the page was tested and debugged on Chrome, IE, Firefox, and Opera without any issues.

However, when I tried debugging it on Edge, a problem arose. The page displayed without CSS and the implemented JavaScript didn't function properly.

Here are the Edge Version details:

  • Microsoft Edge 42.17134.1.0
  • Microsoft EdgeHTML 17.17134

I declared this on aspx:

<script src="../assets/js/jquery-ui-1.9.2.custom.js"></script>

I believe I have identified the root cause of the issue - the browser seems unable to locate all the scripts that have been added to it. This error only occurs in Edge, not in other browsers.

HTTP500: SERVER ERROR - The server encountered an unexpected condition that prevented it from fulfilling the request. GET - https://localhost:44311/assets/css/jquery-ui-1.9.2.custom.css

Answer №1

Make sure to clear your browser's cache before testing your code again.

You might also want to create a new folder and organize your JS and CSS files in it, then reference them accordingly.

If you're still facing issues, consider using a CDN reference to add the JQuery UI JavaScript or CSS file like so:

<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>

For more information, visit jQuery UI – All Versions and jQuery UI 1.9.2.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

"Encountered a 400 Error while trying to access the OpenAI

var openairequest = new XMLHttpRequest(); const payload = ({ "model": "text-davinci-003", "prompt": "say this is a test" }); console.log(payload) openairequest.open("POST",`https://api.openai.com/v ...

What is the best way to showcase images using MemoryStream?

Currently, I have a collection of images, mostly in png and jpg formats, that are stored in SQL Server 2008's FileStream. I have successfully retrieved these images and stored them in a MemoryStream. Now, I am facing a challenge of displaying these i ...

Accordion Box glitch detected in Firefox browser

I have been working on a JavaScript function that controls a slide up/down box. However, I've encountered some issues with Firefox as the box only opens and closes once before failing to work properly again. Upon further investigation, it seems that F ...

Tips for transferring data via ajax to rails 3. The jQuery function is ensuring the string is properly handled

I am attempting to achieve the following: $.ajax({ type: "PUT", url: /example, data: {_method: "put", "foo_model[bar_attribute]": value_var } }); It is working as expected, but I need to dynamically construct the part foo_model[bar_attribute]. ...

Tips for keeping an item consistently at the top in a React Native application

Within my flatlist, I have a card that is displayed when a user makes a post. However, the card currently appears randomly on the screen. I would like the card to always be rendered at the top of the screen whenever a user makes a post, similar to how it ...

Stylish Bootstrap sidebar featuring a vibrant background hue

I am facing an issue with my bootstrap layout where I have two columns - one on the LEFT and one on the RIGHT. The left column should be 8 units wide using the Bootstrap's 12 column grid format, while the right column should be 4 units wide as shown b ...

Continuous polling with Ajax in Rails does not trigger the display of an alert box

Trying to implement ajax polling using the RailsCast tutorial on ajax polling (#229) but encountering an issue where the alert box doesn't pop up after running the server. Here's the code in app/views/quotes/index.js.erb: alert('Hey') ...

issues with alignment between bootstrap div and canvas

I am currently working on a project with a canvas inside a div using three.js. My goal is to display a purple bar for user settings on the right side of the three.js window. However, I am encountering an issue where Bootstrap is not recognizing that I want ...

Creating a tiled grid layout using Bootstrap 3

I’m grappling with a masonry layout issue while using Bootstrap. In my code, I have 5 divs but I’m struggling to get Div 4 and 5 to move up as shown in the attached image. While using margin-top is a quick fix, it disrupts the responsive design. Any su ...

React function does not provide a return value

In my function, I am calculating the current sum of elements. Within my Api, there is a method called Getcoin that works correctly when I log each element during the foreach cycle. However, I am not getting any results in the return statement or console.lo ...

JavaScript tip: How to disregard symbols that affect the length of text in a textbox?

I am working on a task which involves counting only the text, excluding symbols, entered in a textbox. For instance, if a user types email_ex_3/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="05374568646c692b666a68">[email ...

Load different fonts dynamically based on environment configuration

My question is regarding loading multiple fonts from a font.css file in React. I need to make the font path dynamic based on the environment variables. Can anyone suggest a solution for achieving this? I've attempted to create a font.scss file and de ...

What could be causing my divs to overlap?

I recently started coding and I'm facing an issue with my <header> and <section> divs overlapping each other. I was under the impression that being block elements, <section> should be displayed below <header>. Any suggestions o ...

Redux's 'connect' function fails to recognize changes in the state array

I've recently implemented redux with a reducer that handles an array of time slots for a specific date. Whenever the date is changed, the reducer successfully updates the state (confirmed through console logs in my mapStateToProps function). However, ...

Change elements in real-time

I have a requirement to adjust elements with the class .super-elem by adding an attribute adjusted="true". Initially, I can easily achieve this within the document's ready event : $(".super-elem").attr("adjusted", "true"); However, I may add more . ...

What is the reason for typescript's lack of a "function" type?

As a newcomer to TypeScript, I'm puzzled as to why I am unable to define an object like this: const obj: { property1: string property2: boolean property3: function } It seems that the only workaround is to use: const obj: { property1: strin ...

Troubleshooting a labeling problem in a donut chart with Chart.js

$(document).ready(function(){ function call() { $.ajax({ url: "chartjs/tempdata.php", method:"GET", cache: false, success: function(data) { console.log(data); var difference=[]; var percentage=[]; var finaldata=[]; for(var i in data) { //time.push( ...

WebView2 based on Chromium Edge is experiencing issues

I have diligently followed all the guidelines provided in the Getting Started with WebView2 (developer preview) documentation in order to develop an application that utilizes Microsoft Edge (Chromium) browser. Despite my efforts, I am facing issues with lo ...

Converting a JSON object into a format suitable for transmission through AJAX requests

I am attempting to transmit data in a JSobject via AJAX using jQuery. Below is the json object: var cookieData = { 'land' : document.URL, 'ref' : document.referrer }; The object is then stored in a cookie... throu ...

Issue detected in AngularJS 1.6 app: Attempting to convert pagination of items into a service results in failure

Currently, I am developing a compact Contact application using Bootstrap 4 along with AngularJS v1.6.6. This application is designed to showcase a JSON file containing various user data. Considering the large dataset in the JSON, the app features a pagina ...