当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 73 下一页
摘要: Power-BI目前分为两个产品体系:(1)Power-BI标准解决方案For金蝶(EAS、K3、KIS专业版)/ 用友(NC、U9、U8、T6、T3)/ 神码(易拓、易飞)/ SAPB1等主流ERP版本,预设丰富实用的分析模型,安装即可用,降低BI技术门槛,向全民普及BI应用。(2)Power-B 阅读全文
posted @ 2020-04-30 15:15 hofmann 阅读(299) 评论(0) 推荐(0)
摘要: 到easyui官网下载jquery.easyui.min.js引入到项目中: <script src="/jquery.easyui.min.js"></script> js代码: $("#infoWindow").form("submit", { url: "/api/Files/ReceiveF 阅读全文
posted @ 2020-04-25 12:43 hofmann 阅读(263) 评论(0) 推荐(0)
摘要: Api [HttpPost] public object ReceiveFile() { string json = DisptcherHelper.Instance.Start(); return new HttpResponseMessage { Content = new StringCont 阅读全文
posted @ 2020-04-25 12:40 hofmann 阅读(239) 评论(0) 推荐(0)
摘要: protected void Application_Start() { AreaRegistration.RegisterAllAreas(); GlobalConfiguration.Configure(WebApiConfig.Register);//这个路由注册应该优先注册 RouteCon 阅读全文
posted @ 2020-04-24 01:14 hofmann 阅读(569) 评论(0) 推荐(0)
摘要: <table width="1000px" border="0" align="center" cellpadding="0" cellspacing="0" id="__01"> <tr> <td style="text-align: center; vertical-align: middle; 阅读全文
posted @ 2020-04-23 15:52 hofmann 阅读(274) 评论(0) 推荐(0)
摘要: ITIL(Information Technology Infrastructure Library )是一个基于行业最佳实践的框架,将IT服务管理业务过程应用到IT管理中。许多CIO都正在将他们的技术组织转变为内部服务提供商的角色,以保证他们提供给最终用户的应用质量。对于网络管理员和其他IT人员来 阅读全文
posted @ 2020-04-16 21:17 hofmann 阅读(584) 评论(0) 推荐(0)
摘要: a - ante meridiem and post meridiem d - day of month (no leading zero) dd - day of month (two digit) o - day of year (no leading zeros) oo - day of ye 阅读全文
posted @ 2020-04-15 21:14 hofmann 阅读(451) 评论(0) 推荐(0)
摘要: update a set a.OrgId=b.OrgId from [dbo].[Base_User] a left join [dbo].[Oil_Org] b on b.OrgCode=a.LoginAccount 阅读全文
posted @ 2020-04-14 20:21 hofmann 阅读(1002) 评论(0) 推荐(0)
摘要: .Net中通用分页页数计算方式,分页的总页数算法 总记录数:totalRecord每页最大记录数:maxResult 算法一:totalPage = totalRecord % maxResult == 0 ? totalRecord / maxResult : totalRecord / maxR 阅读全文
posted @ 2020-04-13 17:09 hofmann 阅读(4653) 评论(1) 推荐(2)
摘要: List<string> 转 List<int> var list = (new[]{"1","2","3"}).ToList(); var newlist = list.Select<string,int>(x =>Convert.ToInt32(x)); List<int> 转List<stri 阅读全文
posted @ 2020-04-13 13:06 hofmann 阅读(2071) 评论(0) 推荐(0)
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 73 下一页