sharepoint 2013 doesn't render html correctly after deployment - html

I use ASP.Net/MVC (.Net Framework 4.5) to program a Sharepoint 2013 Provider hosted app. If I press F5 to test my application I have no problem with the rendered result.
But if I deploy it onto my iis server and install the package on sharepoint 2013 the html will not be rendered correctly.
The funny thing is that it will still render correctly on any other major browser (Firefox, Opera, Chrome). Since my company uses only ie (people don't have any rights to install additional software) I need to have it render correctly on ie.

Since I found the answer to my own question I want to share it here so if anyone hits the same problem he/she can make use of the answer.
It was a problem with Internet Explorer 11's "Compatibility View settings". I had to uncheck the "Display intranet sites in Compatibility View" checkbox to render the HTML correctly.

Related

Visual Studio 2019 Change Viewing Browser

My default browser is Chrome but I want to use Firefox Developer as my browser in Visual Studio 2019 Community edition on web pages I am working on. The HTML menu has "View in browser (Google Chrome)" and I cannot find any option to change this. Searched Microsoft and found nothing pertinent. Stackoverflow has only two related posts, one discusses toggling between Chrome and IE but couldn't see how they did it.
I expect this to be a head-slapper, but I'm stuck. TIA!
I believe all you have to do is download the firefox developer edition and set it as your default browser. Do this and if you have Visual Studio running, close it and reopen. It should be found under the IIS Express dropdown menu where you select the web browser. You may not have to have firefox dev edition set as your default browser but that is what I have running on my end and it works correctly.

Date Picker(Calendar icon) for SSRS parameter are not displayed in Microsoft Edge

The web application that i am working on now able to display the SSRS Report in Internet Explorer11.
Problem: When I try to run the web application in Edge Browser, the calendar icon disappears on Edge browser. I did some research and found out that Microsoft Edge did not support calendar control in SSRS till SSRS-2014. Besides I tried to change the meta tag in reportviewer.aspx to make it compatible with Edge browser. Unfortunately, I cannot apply this method as it will affect other system report that using another browser (server-side).
Add on: The web application need to launch in Microsoft Edge based on the requirements.
Anyone have any idea/alternative to solve this issues.
Thanks,
Taeron
From your tag, I gather that you are using SSRS 2008. Calender's do no render in Edge as it is HTML 5 (if I'm not wrong!). You either need to use an older version of Internet Explorer.. or upgrade your SSRS instance to a newer version.

How do I force a SharePoint site to turn off compatibility mode and render in IE Edge without access to SharePoint Designer?

My SharePoint site pages are rendering in ie8 by default even though I am on IE11. I do not have access to sharePoint Designer so I can't edit the master page unfortunately. How do I force my site pages to show in IE Edge?
goto http://sitecollection/_catalogs/masterpage/Forms/AllItems.aspx and download the masterpage, edit in notepad/whatever then upload it again. (alternativly open with explorer view, and use Notepad++ or something that can open a URI location, make the change and save it.

GoogleMaps 3.7 map displays blank in IE

this page, which worked fine for the last couple of years, now displays a blank map, apparently since 15 May 2012, when 3.9 was released.
Following the release of version 3.9, applications requesting 3.6 are served 3.7, which seems to be the cause, but I can't see what I'm doing wrong.
I've developed a squint from re-reading the code, but I can't see what's amiss. Is there a kind soul who could help?
Thanks in advance
you need to check the settings of your application. Because when you run the web application on IE9 modifies Document mode from IE9 to internet explorer 7. This could be cause by an setting in your IIS or apache depends of web application even in your markup of your application. to replicate the error
Close the IE9 if it's open
Open the browser and open the developers tools f12
Put the url
Check the document mode it's change to IE7

How do I build my website in Firefox?

Here's an easy question. How do I configure Visual Studio 2008 to build my webpage in a certain browser? I really want to build in all 5 well-known browsers (IE, Firefox, Chrome, Opera, and Safari), but right now I am having to right click the actual html files and open them in different browsers. In dreamweaver, there is a simple dropdownlist for this...what does visual studio have?
Firsty, you don't build your site for each different web browser. You build one website that's standards-compliant and will work in all browsers.
Having said that, you will probably have to use some non-standard "hacks" to get Internet Explorer to behave as the other browsers do because older versions of IE don't follow web standards.
You should setup your website in IIS using IIS Manager. Then you can run your website in whatever browser you like using a URL like http://localhost/YourWebsite/
Here's an article on creating a website in IIS: http://support.microsoft.com/kb/323972
Alternatively if you want to use the web server that's built into Visual Studio you can right-click one of the pages in your project, select Browse with.. and use the Browse With dialog to set the default browser. Once you've done this you can run your site in the default browser by pressing F5.
See this page for switching the default browser. As far as a dropdown to easily switch like Dreamweaver, there may be a plugin.
Right Click on an Aspx page, choose "Browse With...", and set Firefox as Default.
I like the site browsershots.org, submit your URL and it shows how it looks in different browsers on different operating systems. After a minute or 2 I got back 42 different shots.... good to know I look good on FireFox 3.0.4 on MAC OS X 10.6 :).
How to change the default browser to debug in Visual Studio