sayfanın belli bir saniye aralığında kendini yenileme özelliği var
şöyle de bi örnek kod buldum


<%

set wbook = createObject("DypsXLS.XLSApplication")

'Create a Workbook Object and set a password
'to make it read-only
'Set wbook = CreateExcelWorkbook()
wbook.password = "myPassword"


' The default font is Tahoma,10
wbook.SetDefaultFont "Tahoma", 9



' Create Worksheets
wbook.AddSheet("FirstSheet")
' SecondSheet is hidden
wbook.AddSheet("SecondSheet",False)



' The sheet name could be ommit in
' order to have the default one
wbook.AddSheet



' Add Sheet and return a XLSWorkSheet object
Set wsheet = wbook.AddSheet("MySheet")


'Get a reference to the second sheet
Set wsheet = wbook.GetSheet(2)
'and similar :
Set wsheet = wbook.GetSheet("SecondSheet")


' Set the scale factor for the sheet (in percent)
wsheet.ScaleFactor = 95

'Set the active sheet when opened
wbook.SetActiveSheet "MySheet"
'' Or
wbook.SetActiveSheet 3


'adding cells to a worksheet
Set cell = wsheet.AddCell(1, 1,"MyValue") 'cell A1


'Use GetCell to retrieve an already existing cell
Set cell = wsheet.GetCell(1, 1) 'Cell A1
cell.value = "4"

'If you have write permission :
wbook.Save server.mapPath("myExcelWork.xls")
%>