String.prototype.replaceAll = function(s1, s2) {
return this.replace(new RegExp(s1, "gm"), s2);
}
var myDate = new Date().Format("yyyy/MM/dd hh:mm:ss.S").replaceAll(" ", ":").replace(new RegExp(/(:)/g),"/").split("/");
String.prototype.replaceAll = function(s1, s2) {
return this.replace(new RegExp(s1, "gm"), s2);
}
var myDate = new Date().Format("yyyy/MM/dd hh:mm:ss.S").replaceAll(" ", ":").replace(new RegExp(/(:)/g),"/").split("/");