Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi to all,
Here i complete that scenario but below code not working in ie10 compatibility view.

code:-
XML
<html>
       <head>
           <meta http-equiv="refresh" content="5;URL=dashboard.aspx" />
           </head>

       </html>


.cs:-
Response.AppendHeader("Refresh", 5 + "; URL=Dashboard.aspx");

how to work in ie browser then i need another method using script or anythink. Kindly help for this.
Posted
Comments
JOTHI KUMAR Member 10918227 30-May-15 3:50am    
i got solution if i want to use in ie just response.addheader in .cs

1 solution

SQL
This would refresh page after every 2 seconds.


Or if you want to do it in code behind do it like this:


Response.AppendHeader("Refresh", "2");
 
Share this answer
 

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