Hi evil radish,
the way to change the background colour of you table cell is in actually adding in the css styling required to change the colour for that cell, or a css calss to do that I am not sure where you got "Row.background = Color.Red; " but this is not asp, and looks more like javascript.
What you need to do is firstly run the logic to find the size of the file you are checking and then set up the style to apply to the table cell along with what you want to display in the cell
So using you code something like this
Code
<html>
<head>
<title>Access DB watch</title>
</head>
<body bgcolor="silver" text="black">
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("
file://nas01/music/music.mdb")
dim filename:filename = ("
file://nas01/music/music.mdb ")
dim filesize:filesize = f.Size & "bytes."
dim tdStyle
if (f.size < 500) then
tdStyle = "background: #00FF00;"
else
tdStyle = "background: #FF0000;"
end if
set f=nothing
set fs=nothing
%>
<table border="1" name="bob">
<tr>
<td style="<% response.write(tdStyle) %>">
<% = response.write(filename & filesize) %>
</td>
</tr>
</body>
</html>
[code]
That should get you going.