Click here to Skip to main content
15,920,576 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Page loading How can we resolve flickering problem in Asp.net C#.
XML
<meta http-equiv="Page-Enter" content="blendTrans(Duration=0)" />
    <meta http-equiv="Page-Exit" content="blendTrans(Duration=0)" />

When I written above code then problem has been resolved in IE 8
but in mozilla Firefox (version : 23.0.1 ) it's have same problem.
flickering problem not resolved.
Please suggest me.
Posted
Comments
Prasad Khandekar 13-Sep-13 3:50am    
Hello Mahi,

FF does not support filters and hence it is ignoring these tags and doing nothing.

Regards,
Mahesh Swami 13-Sep-13 4:24am    
Thanks Prasad
but Can we have any other option

1 solution

Hello Mahi,

Perhaps a simple option is to use JQuery and JQuery-UI. Below code should get you started.
HTML
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<meta name="author" content="Prasad P. Khandekar"/>
<meta name="owner" content="www.templatemo.com"/>
<meta name="copyright" content="www.templatemo.com"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Pragma-directive" content="no-cache"/>
<meta http-equiv="cache-directive" content="no-cache"/>
<title>My Portal</title>
<meta name="keywords" content="intranet, support, issue tracking, doducmentation, tools, eclipse" />
<meta name="description" content="A support portal for developers" />
<link href="static/css/percent-column-system-min.css" rel="stylesheet" type="text/css" />
<link href="static/css/portal.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="static/js/jquery/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="static/js/jquery/jquery-ui-1.10.3.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
    $('#mainPage').fadeIn(1000);
});
</script>
</head>
<body style="display:none;" id="mainPage">
    <div id="templatemo_wrapper">
        <div id="templatemo_sidebar">
            <div id="site_title">
                <h1><a href="http://intranet.foo.com"><img src="static/images/templatemo_logo.png" alt="logo" />
                <strong>DEV</strong>PORTAL<span><i>Innovation</i>, <b>Bank on it.</b></span></a></h1>
            </div>

        </div>
    </div>
</body>
</html>

Regards,
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900