C#中刷新页面的方式

1、 Response.Redirect( "NewsManager.aspx ");

     这种页面刷新是从服务器回传。如果在前面使用了!ispostback判断只有第一次加载才绑定数据时,会造成刷新之后不显示数据。

2、 Response.Write( " <script> window.location= 'NewsManager.aspx ' </script> ");

3、<head>   
<META   HTTP-EQUIV= "Content-Type "   CONTENT= "text/html;   charset=gb2312 "/>   

<!--   下面语句实现60秒刷新一次   -->   
<META   HTTP-EQUIV= "refresh "   CONTENT= "60 "/>   

<title> A   Simple   Example </title>   
</head>

原文地址:https://www.cnblogs.com/zhouxiuquan/p/1951287.html