问题描述
每隔两分钟就显示数据库里的10条最新数据怎么做
解决方案
解决方案二:
那就每隔10分钟刷新一下页面了
解决方案三:
数据查询操作放到Timer控件的Tick事件里,每隔两分钟就显示数据库里的10条记录,查询语句里指明求最新追加的10条记录,如有自增的id则,selecttop10*fromtableorderbyiddesc
解决方案四:
selecttop10*fromtableorderbyiddesc访问数据库写对就OK了其他只要想办法实现定时刷新就可以刷新页面方法很多。。整理了一下第一:以下为引用的内容:privatevoidButton1_Click(objectsender,System.EventArgse){Response.Redirect(Request.Url.ToString());}第二:以下为引用的内容:privatevoidButton2_Click(objectsender,System.EventArgse){Response.Write("<scriptlanguage=javascript>window.location.href=document.URL;</script>");}第三:以下为引用的内容:privatevoidButton3_Click(objectsender,System.EventArgse){Response.AddHeader("Refresh","0");}第四:以下为引用的内容:privatevoidButton6_Click(objectsender,System.EventArgse){//好像有些不对?//Response.Write("<scriptlanguage=javascript>window.location.reload();</script>");}第五:(需替换<>)以下为引用的内容:<script><!--varlimit="3:00"if(document.images){varparselimit=limit.split(":")parselimit=parselimit[0]*60+parselimit[1]*1}functionbeginrefresh(){if(!document.images)returnif(parselimit==1)window.location.reload()else{parselimit-=1curmin=Math.floor(parselimit/60)cursec=parselimit%60if(curmin!=0)curtime=curmin+"分"+cursec+"秒后重刷本页!"elsecurtime=cursec+"秒后重刷本页!"window.status=curtimesetTimeout("beginrefresh()",1000)}}window.style="Z-INDEX:102;LEFT:408px;POSITION:absolute;TOP:232px"ms_positioning="text2D"><P><FONTsize="3">自动刷新页面</FONT></P></DIV>第六:以下为引用的内容:<metahttp-equiv="refresh"content="300;url=target.html">
解决方案五:
selecttop10*fromtableorderbyiddesc访问数据库写对就OK了其他只要想办法实现定时刷新就可以刷新页面方法很多。。整理了一下第一:以下为引用的内容:privatevoidButton1_Click(objectsender,System.EventArgse){Response.Redirect(Request.Url.ToString());}第二:以下为引用的内容:privatevoidButton2_Click(objectsender,System.EventArgse){Response.Write("<scriptlanguage=javascript>window.location.href=document.URL;</script>");}第三:以下为引用的内容:privatevoidButton3_Click(objectsender,System.EventArgse){Response.AddHeader("Refresh","0");}第四:以下为引用的内容:privatevoidButton6_Click(objectsender,System.EventArgse){//好像有些不对?//Response.Write("<scriptlanguage=javascript>window.location.reload();</script>");}第五:(需替换<>)以下为引用的内容:<script><!--varlimit="3:00"if(document.images){varparselimit=limit.split(":")parselimit=parselimit[0]*60+parselimit[1]*1}functionbeginrefresh(){if(!document.images)returnif(parselimit==1)window.location.reload()else{parselimit-=1curmin=Math.floor(parselimit/60)cursec=parselimit%60if(curmin!=0)curtime=curmin+"分"+cursec+"秒后重刷本页!"elsecurtime=cursec+"秒后重刷本页!"window.status=curtimesetTimeout("beginrefresh()",1000)}}window.style="Z-INDEX:102;LEFT:408px;POSITION:absolute;TOP:232px"ms_positioning="text2D"><P><FONTsize="3">自动刷新页面</FONT></P></DIV>第六:以下为引用的内容:<metahttp-equiv="refresh"content="300;url=target.html">
解决方案六:
settimeout("地址",10)
解决方案七:
可以使用AJAX 订时器 做局部刷新``
解决方案八:
<metahttp-equiv="refresh"content="120"/>