新手提问:如何刷新网页?
我的网页有一个text框,我要对它进行定时刷新,请问如何实现?请各位大虾详细解释一下,万分感谢!!!!
代码如下:
<textarea name="NoticeText" <%=ReadOnly_Style%> cols="70" rows="20"><%
Set fs = CreateObject("Scripting.FileSystemObject")
Set ts = fs.OpenTextFile(FilePath)
Set f = fs.GetFile(FilePath)
FileModifyDate = f.DateLastModified
Response.write ts.ReadAll
ts.Close
Set fs = nothing
%></textarea>