会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
mabel hua
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
下一页
2017年10月19日
Linq表连接大全(INNER JOIN、LEFT OUTER JOIN、RIGHT OUTER JOIN、FULL OUTER JOIN、CROSS JOIN)
摘要: 转自: http://www.cnblogs.com/shenqiboy/p/3260105.html
阅读全文
posted @ 2017-10-19 13:57 mabel hua
阅读(92)
评论(0)
推荐(0)
2017年9月27日
c# 转换成时间类型
摘要: if (rngFound.Value.ToString().Contains("/")) { closingdate = rngFound.Value; } else if (rngFound.Value.ToString().Contains("-")) { closingdate = Conve
阅读全文
posted @ 2017-09-27 10:53 mabel hua
阅读(375)
评论(0)
推荐(0)
2017年9月8日
AngularJS +Kendo UI Grid template
摘要: var dataSource = new kendo.data.DataSource({ transport: { dataType: "json", read: inputUri + $stateParams.subjectID, }, pageSize: 10, }); $scope.mainG
阅读全文
posted @ 2017-09-08 10:22 mabel hua
阅读(411)
评论(0)
推荐(0)
2017年9月5日
SQL列转行用逗号隔开
摘要: declare @result varchar(255) set @result = ” select @result = @result + cast(F_IT_FWID as varchar(255)) +‘,’ from [TJFX].[dbo].[TB_JG_SJTJFXB201412] w
阅读全文
posted @ 2017-09-05 11:16 mabel hua
阅读(3673)
评论(0)
推荐(0)
2017年6月19日
string转数组, 数组转ist, list转数组, 数组转string
摘要: private string OrderBonds(string bonds) { string[] lists = bonds.Split(','); List<string> newList = new List<string>(lists); newList.Sort(); lists = n
阅读全文
posted @ 2017-06-19 13:06 mabel hua
阅读(709)
评论(0)
推荐(0)
2017年6月1日
菜鸟webpack教程纠错
摘要: gei事例: http://www.runoob.com/w3cnote/webpack-tutorial.html 本次的问题主要是在loader部分,原因是按照教程的操作,会出现一下错误 后来发现问题出在这里: 只要改成这样就好了:
阅读全文
posted @ 2017-06-01 17:12 mabel hua
阅读(173)
评论(0)
推荐(0)
2017年4月24日
c# Excel 行高、列宽、合并单元格、单元格边框线、冻结
摘要: http://www.2cto.com/kf/201007/52724.html 新增选择整列: Range = ((Range)(WALeTieSheet.Cells[1, PwCStartCol_WALSheet])).EntireColumn;
阅读全文
posted @ 2017-04-24 13:53 mabel hua
阅读(221)
评论(0)
推荐(0)
2017年4月14日
c# 后台处理获取的JSON 数据
摘要: 原创: http://www.imooc.com/article/8913 自己的例子: web.config <appSettings> <add key="GmailUrl" value="https://aaa/bbb/ccc/"/> </appSettings> private string
阅读全文
posted @ 2017-04-14 11:44 mabel hua
阅读(1348)
评论(0)
推荐(0)
2017年3月28日
利用ASP.NET加密和解密Web.config中连接字符串
摘要: 原文如下: http://www.cnblogs.com/Gyoung/p/3194467.html 不过这里需要提醒的是 冒号要去掉: 加密: aspnet_regiis -pef connectionStrings C:\VisualStudio2008\Authorization 解密:asp
阅读全文
posted @ 2017-03-28 18:18 mabel hua
阅读(143)
评论(0)
推荐(0)
2017年3月23日
转载 [c#] 虚函数(Virtual),抽象函数(abstract)和接口的区别
摘要: 1.virtual:允许被重写,但不强制要求。声明时提供其自身实现; 2.abstract:强制要求其继承者重写。声明时不提供其自身的实现,抽象类不能被实例化; 3.interface:接口就是协议,其声明的成员(属性,方法,事件和索引器)必须由其继承的类实现。接口不能直接被实例化。 虚方法与抽象方
阅读全文
posted @ 2017-03-23 11:35 mabel hua
阅读(274)
评论(0)
推荐(0)
上一页
1
2
3
下一页