<%
set Cn = Server.CreateObject("ADODB.Connection")
Cn.Open "driver=SQL Server;server=216.122.236.5;uid=alamjad;pwd=INdNPcsm6qk;database=alamjad"
SQL="Select count(*) as kount from subjob"
Set rs=cn.execute(SQL)
dim tot, today
if not rs.EOF and NOT rs.BOF then
rs.movefirst
tot = rs("kount")
else
tot = "None"
end if
today = MonthName(month(date)) & ", " & day(date) & ", " & year(date)
%>