I have created a MVC .NET application that has very basic functionality. When I deploy it to my server through IIS and run it within IE, some of the pages do not work properly; by this I mean I am unable to click any buttons on a page and on other pages I have it reading from a file and displaying the contents but this does not work. There are no errors within the console either. When I go to use Chrome or Mozilla to run the application, all the pages work and there is no problems. What server or application settings could be affecting this?
MVC .NET application doesn't work properly in IE but does in Mozilla
50 Views Asked by Matthew Czajka At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in IIS
- Create an IIS web request activity light
- Why web API return 404 when deploy to IIS
- Adding site Binding programmatically IIS 7.5
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- Redirecting subdomain to directory on Azure
- Saving Image To a Temp Folder is Loosing Session
- The page cannot be displayed because an internal server error has occurred on server
- Approach for performing long running tasks in .NET
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- IIS 7 ERR_CONNECTION_TIMED_OUT only with public IP
- Maximum value for IIS .NET Compilation Batch Time-out
- ASP.Net 1.1 app on IIS 7 waiting threads
- File upload web api 2.0 error after deployment on IIS 8.5
- nginx and IIS - dealing with invalid hostname and SSL
- Allow console application to access Windows Authenticated web app
Related Questions in MODEL-VIEW-CONTROLLER
- WebApi: Reading errors
- i want to create a service that does the login functionality?
- What is the point of the name method in the symfony2 annotation?
- Is it recommended to use Node.js for an online room booking web application?
- CodeIgniter - How to get a list of all my controllers dynamically?
- MVC WPF DataContext for two UserControls
- Is bootstrap file a controller?
- PHP/Zend Framework 2 - Unable to display table field values within dynamically generated table
- Laravel MVC application structure on UML class diagram
- Select2 using Ajax (multi select) - when selecting second one first one disappars
- How to only let correct_user create or destroy?
- Google OAuth 2.0 .NET
- How to Minitest Controller :create action with Paperclip Validators
- Cannot get FullCalendar to work (Laravel 5)
- Enable/ Disable different sets of Controllers in based on mode specified at startup Spring MVC
Related Questions in SETTINGS
- Media files end up in in a pycharm subdirectory when uploading
- Android Studio (Intellij) keeps adding second line to modules.xml
- Visual Studio 2013 CE keeps overwriting Task list
- Vim: last word on user specific settings?
- C# - Settings.Default.Save() is very slow
- Ivy Settings - Changing the way conflicts are resolved
- How to check if drop down menu of ActionBar is active
- how to permanently save options(dplyr.width = Inf) in Rstudio?
- change the settings file items in .Net console application
- Eclipse error: "Path must include project and resource name" on invoking clean
- Error when going into new activity Android
- Railo cannot add event gateway under service in web admin
- Settings are not stored correctly
- drupal issue with install profile and domain module?
- How to change settings from within my app with code in Android
Related Questions in SYSTEM-CONFIGURATION
- Ansible: check for file text and if not there add it
- Portable access to sysconfdir via config.h
- Migrating system configurations
- how to get iOS app notified whenever user switches between wifi networks
- Incorrect VPN Data Statistics in MacOS Swift App
- `nixos-rebuild switch` gets stuck when using `builtins.fetchGit`
- Shopware 6 - how to add button component in the plugin System configuration in SW6
- Listen to Network ON/OFF state in daemon application - Cocoa
- how to define system configuration?
- Given the BSD name or a reference to a network interface, how to get its gateway and DNS servers?
- MVC .NET application doesn't work properly in IE but does in Mozilla
- How do I get current network location name?
- How to correlate (a changed-key-string passed to SCDynamicStoreCreate()'s callback) to a network device?
- Cannot run Cordova Applications using Visual Studio 2013
- What does zero sockaddr_in mean in SCNetworkReachabilityCreateWithAddress?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Without knowing a little more about the specific problems you are seeing and the versions of Internet Explorer, Firefox and Chrome that you are running, it's hard to know what's causing your problem for sure.
However, you should be aware that different browsers have different levels of support for JavaScript, and that this may cause differences in how your application behaves. IE 11 has very limited support for ECMA 6, and getting applications that make use of ECMA 6 features run properly in IE often necessitates using a polyfill.
This chart shows different browsers and the JavaScript features that they do or don't support: https://kangax.github.io/compat-table/es6/