To get IIS uptime you can set an Application variable in the Application_OnStart method in the global.asa file
eg
Sub Application_OnStart
Application("IIS_START") = Now()
End Sub
Then you can display the IIS start time using Application("IIS_START") in any ASP page. Use the DateDiff function to compare the IIS start time to the current time to get the actual uptime