User154948892 posted
Today is 25th January (week 4), and I'm using this function in ASP classic:
<%=DatePart("ww", Date)%>
The result becomes 5. But today is week number 4. I tried to hardcode the string instead of Date - function like this:
<%=DatePart("ww", "2021-01-25")%>
Still getting 5 as result. Are there any workarounds for this issue?