Advertisement
Guest User

Skynet Solutions - getS Function Example

a guest
Jan 23rd, 2012
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.28 KB | None | 0 0
  1. <%
  2.     currDate = NOW()
  3.     Response.write("Today is the " & DAY(currDate) & getS(DAY(currDate)) & "<br />")
  4.         ' Today is the 11th
  5.         '
  6.     currDate = DateAdd("d", 1, currDate)
  7.     Response.write("Tomorrow is the " & DAY(currDate) & getS(DAY(currDate)) & "<br />")
  8.         ' Tomorrow is the 12th
  9. %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement