<%
' DIM is not needed in most cases, but it is left in in case yours needs it.
' VB.NET is required, but it is not required in Classic ASP, unless you use <%Option Explicit%> in your page.
Dim hh, mm, ss, versionStr
' 1. Get raw components
hh = Hour(Now()) ' Returns 9 (no leading zero)
mm = Minute(Now()) ' Returns 6
ss = Second(Now()) ' Returns 25
' 2. Pad minutes and seconds with leading zeros if they are single digits
mm = Right("0" & mm, 2)
ss = Right("0" & ss, 2)
' 3. Combine them (Hour remains unpadded to match your 90625 requirement)
versionStr = hh & mm & ss
%>
<link rel="stylesheet" href="MyCSS.css?v=<%=versionStr%>">
What the above code does. When the page loads, the script retrieves the page load time, then loads the CSS page in its current state. Without this time in place, you will get the state of the CSS file from the last time it was cached by the web browser or by the web server.