CodeCharge Studio
search Register Login  

Visual PHP Web Development

Visually Create Internationalized Web Applications, Web Reports, Calendars, and more.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> PHP

 Page cannot be displayed by IE

Print topic Send  topic

Author Message
saseow

Posts: 744
Posted: 04/25/2013, 1:51 PM

I have a page that all normal browsers can display (Chrome, FF, Safari and Opera) but IE, not a chance.
Anyone have this hassle before?
View profile  Send private message
MichaelMcDonald

Posts: 640
Posted: 04/25/2013, 8:34 PM

Is this because of speed of rendering issues with I.E. ?
_________________
Central Coast, NSW, Australia.

View profile  Send private message
saseow

Posts: 744
Posted: 04/25/2013, 10:18 PM

Hello Michael,
I never use IE so did not even know that there was a problem with the rendering speed. That may well be it.
I will look into this.
Thank you for the reply.
View profile  Send private message
MichaelMcDonald

Posts: 640
Posted: 04/25/2013, 10:35 PM

Script for detecting if browser is I.E. and a contingency plan !


In the Before Show event of the Login form:


$user_agent = $_SERVER['HTTP_USER_AGENT'];

if (preg_match('/MSIE/i', $user_agent)) {
echo "Internet Explorer is unable to support this application.Switch to Firefox.";
$Login->Visible = false;
} else {
$Login->Visible = true;
}
_________________
Central Coast, NSW, Australia.

View profile  Send private message
saseow

Posts: 744
Posted: 04/25/2013, 10:49 PM

Seems as though you have had this hassle before. Thanks Michael, I am going to use this.
View profile  Send private message
DataDoIT
Posted: 04/26/2013, 12:49 AM

Wow. All of the planet's standards compliant browsers work, but M$ IE
doesn't? Never heard of that happening before!

Something that might help... In IE9 or above hit your F12 key to open
the developer console. From there you can do lots of debugging,
particularly changing your browser mode to see if you experience the
problem in prior versions of IE.
MichaelMcDonald

Posts: 640
Posted: 04/26/2013, 8:28 AM

A large mysql country/state database (app 250 countries/4500 states) feeding AJAX dependent listboxes - FF + Chrome +Safari load contents instantly; I.E. takes 7-10 seconds and holds up the build of every other form and grid on the page ClunkityClunk !



_________________
Central Coast, NSW, Australia.

View profile  Send private message
mitter74

Posts: 8
Posted: 05/02/2013, 6:07 PM

I had similar problems with the CSS and used some custom code to get around IE9 and IE10...
View profile  Send private message
MichaelMcDonald

Posts: 640
Posted: 05/03/2013, 7:57 AM

@mitter74 - can you please elaborate?
_________________
Central Coast, NSW, Australia.

View profile  Send private message
mitter74

Posts: 8
Posted: 05/03/2013, 9:36 AM

sure, I had users that could not display all of the contents...

I expanded the style references as such:

<link rel="stylesheet" type="text/css" href="{page:pathToCurrentPage}style.css">
<!--[if IE 6]><link rel="stylesheet" href="{page:pathToCurrentPage}style.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><LINK rel="stylesheet" href="{page:pathToCurrentPage}style.ie7.css" type=text/css media=screen><![endif]-->
<!--[if IE 8]><link rel="stylesheet" href="{page:pathToCurrentPage}style.ie8.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 9]><LINK rel="stylesheet" href="{page:pathToCurrentPage}style.ie8.css" type=text/css media=screen><![endif]-->
<!--[if IE 10]><LINK rel="stylesheet" href="{page:pathToCurrentPage}style.ie8.css" type=text/css media=screen><![endif]-->
View profile  Send private message

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

PHP Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.