• 00
  • :
  • 00
  • :
  • 00
摘要: exec sp_configure 'show advanced options', '1';goreconfigure;goexec sp_configure 'clr enabled', '1'goreconfigure;exec sp_configure 'show advanced opti... 阅读全文
posted @ 2015-01-09 16:36 Garson_Zhang 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 解决SQL Server 2008 错误15023:当前数据库中已存在用户或角色,SQLServer2008,错误15023, 在使用SQL Server 2008时,我们经常会遇到一个情况:需要把一台服务器上的数据库转移到另外一台服务器上。而转移完成后,需要给一个"登录"关联一个"用户"时,往往会发生错误: “错误15023:当前数据库中已存在用户或角色” ... 阅读全文
posted @ 2014-12-29 15:23 Garson_Zhang 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 1.添加一个 2.添加引用: 3.添加一个SkinTools类 public class SkinTools { /// /// 在Program中调用 /// public static void InitOtherSkin() { //皮肤 ... 阅读全文
posted @ 2014-12-02 16:56 Garson_Zhang 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Web; using System.Data; /// ///Page 的摘要说明 /// public class PageList { public PageList() { // //TODO: 在此处添加构造函数逻辑... 阅读全文
posted @ 2014-11-17 16:00 Garson_Zhang 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 不让合并0—5 chart1.ChartAreas[0].AxisX.LabelStyle.Interval = 1; 效果 阅读全文
posted @ 2014-11-06 16:20 Garson_Zhang 阅读(371) 评论(0) 推荐(0) 编辑
摘要: OAuth2接口说明: 企业应用中的URL链接(包括自定义菜单或者消息中的链接),可以通过OAuth2.0验证接口来获取员工的身份信息。 通过此接口获取用户身份会有一定的时间开销。对于频繁获取用户身份的场景,建议采用如下方案: 1、企业应用中的URL链接直接填写企业自己的页面地址 2、用户跳转到企业页面时,企业校验是否有代表用户身份的cookie,此cookie由企业生成 3、如果没有获取到c... 阅读全文
posted @ 2014-11-04 08:12 Garson_Zhang 阅读(2165) 评论(3) 推荐(0) 编辑
摘要: 制作报表的时候结果出现画红线处的信息太散, 如果没必要全部显示出来,我们可以使用这种效果: 注意和前面的区分,这个功能叫做Collect Pie Slices(收集分区) 要实现此功能,应先了解相关信息 1.收集的阀值(Collected Threshold) 比如这张图我们设置当百分比小于多少5%时集中。 2.集合区要显示的文本(Collected Label) 比如我们这里集合区... 阅读全文
posted @ 2014-11-03 14:33 Garson_Zhang 阅读(2080) 评论(0) 推荐(0) 编辑
摘要: 被动响应多图文消息官方文档: news消息 12345678 2 参数 说明 ... 阅读全文
posted @ 2014-10-31 17:46 Garson_Zhang 阅读(423) 评论(0) 推荐(0) 编辑
摘要: public class CheckDesingModel { public static bool IsDesingMode() { bool ReturnFlag = false; if (LicenseManager.UsageMode == LicenseUsageMode.Designti 阅读全文
posted @ 2014-10-30 15:13 Garson_Zhang 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: /// /// 转换人民币大写金额。 /// public class RMBConverter { /// /// 转换人民币大小金额 /// /// 金额 /// 返回大写形式 public static string ... 阅读全文
posted @ 2014-10-30 15:12 Garson_Zhang 阅读(469) 评论(0) 推荐(0) 编辑