摘要: 执行iframe中的javascript方法如何调用执行iframe中的方法?如下:document.getElementById("iframeId").contentWindow.functionName(); 阅读全文
posted @ 2013-06-04 09:08 weikai 阅读(330) 评论(0) 推荐(0) 编辑
摘要: C#日期格式化1、绑定时格式化日期方法:<ASP:BOUNDCOLUMNDATAFIELD="JoinTime"DATAFORMATSTRING="{0:yyyy-MM-dd}"> ITEMSTYLEWIDTH="18%"></ITEMSTYLE> </ASP:BOUNDCOLUMN>C#日期格式化2、数据控件如DataGrid/DataList等的件格式化日期方法:e.Item.Cell[0].Text=Convert.ToDateTime(e.Item.Cell[0].Text).ToSh 阅读全文
posted @ 2013-06-03 23:08 weikai 阅读(762) 评论(0) 推荐(0) 编辑
摘要: C#时间/日期格式大全,C#时间/日期函数大全有时候我们要对时间进行转换,达到不同的显示效果 默认格式为:2005-6-6 14:33:34 如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢?我们要用到:DateTime.ToString的方法(String, IFormatProvider) using System; using System.Globalization;String format="D"; DateTime date=DataTime,Now; Response.Write(date.ToString(format, Dat 阅读全文
posted @ 2013-06-03 22:01 weikai 阅读(342) 评论(0) 推荐(0) 编辑