上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: using System; using System.Collections.Generic; using System.Linq; namespace LinqTest { class Program { static void Main() { List listProduct = new List { ... 阅读全文
posted @ 2016-10-18 15:44 直钩钓鱼 阅读(766) 评论(0) 推荐(0) 编辑
摘要: 检索文件扩展名。 GetExtension 检索文件的完全限定路径。 GetFullPath 检索路径中的文件名和扩展名。 GetFileName 只检索路径中的文件名。 GetFileNameWithoutExtension 只检索路径中的目录名。 GetDirectoryName 更改文件扩展名 阅读全文
posted @ 2016-09-14 13:37 直钩钓鱼 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 注意: 1.return File(dirAbsolutePath, contentType); 中contentType不能是"application/octet-stream",需要获取文件mimetype后,指定contentType 2.浏览器支持打开的文件格式有限,例如:txt、html、 阅读全文
posted @ 2016-09-14 13:30 直钩钓鱼 阅读(898) 评论(0) 推荐(0) 编辑
摘要: var channels = entity.Channel.Split('/'); for (var i = 0; i < channels.Length; i++) { PropertyInfo pi = typeof(BPM_EnterpriseOrgActiv... 阅读全文
posted @ 2016-08-22 09:50 直钩钓鱼 阅读(242) 评论(0) 推荐(0) 编辑
摘要: public class OrderInfo { public OrderResult GetOrderInfoByOrderNum(List orderNumList) { OrderResult result = new OrderResult(); OmcOrderSearchClient order... 阅读全文
posted @ 2016-08-11 14:05 直钩钓鱼 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 使用 jQuery ,写法如下: 1.$("#myEle", window.parent.document).html(html); 另外还有一种实现方式,代码如下: 2.parent.$("#myEle").html(html); 阅读全文
posted @ 2016-07-29 09:58 直钩钓鱼 阅读(2591) 评论(0) 推荐(0) 编辑
摘要: http://framework7.taobao.org/ 阅读全文
posted @ 2016-07-22 09:58 直钩钓鱼 阅读(253) 评论(0) 推荐(0) 编辑
摘要: PropertyInfo[] properties = typeof(BPM_ContractApproval_Purchase).GetProperties(); foreach (var property in properties) { string text = Convert.To... 阅读全文
posted @ 2016-07-08 15:26 直钩钓鱼 阅读(1448) 评论(0) 推荐(0) 编辑
摘要: Moment.js http://momentjs.cn/ 阅读全文
posted @ 2016-07-03 13:36 直钩钓鱼 阅读(130) 评论(0) 推荐(0) 编辑
摘要: window.showMsg = function (msg) { //显示悬浮窗 $("#autoCloseModal").modal("show") //设置文本内容 $("#autoCloseModal #autoCloseModalBody").html("") $("#autoCloseModal #autoCloseModalBody").ht... 阅读全文
posted @ 2016-06-03 17:32 直钩钓鱼 阅读(879) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页