我有一个包含 mm/dd/yy 格式的日期的变量,我想将该格式更改为 dd/mm/yy
我正在尝试使用下面的代码来做到这一点:
<%
d= response.write con("date")
if IsDate(d) then
document.write(CDate(d))
%>
<tr>
<td><%=con("location")%></td>
<td><%=con("state")%></td>
<td><%=con("date")%></td>
</tr>
我是在走错路还是有更好的方法来做到这一点?