摘要: 新建一般处理程序public class Temp{ public int Index { get; set; } public string Description { get; set; } public string ImagePath { get; set; } public DateTime MyDate { get; set; }} //数据源 List<Temp> listTemp = new List<Temp>() { new Temp(){ Index=1,ImagePath="Desert.jpg", Descrip... 阅读全文
posted @ 2012-02-28 20:09 扯 阅读(3127) 评论(0) 推荐(0) 编辑
摘要: UTC时间转换为标准时间 //UTC时间转换为标准时间 function Todate(num) { num = num + ""; var date = ""; var month = new Array(); month["Jan"] = 1; month["Feb"] = 2; month["Mar"] = 3; month["Apr"] = 4; month["May"] = 5; month["Jan"] = 6; month 阅读全文
posted @ 2012-02-28 20:00 扯 阅读(650) 评论(0) 推荐(0) 编辑