您是第欢迎光临我的主页位访客
浩凡儿
天行健,君子以自强不息;地势坤,君子以厚德载物!
摘要: #region 公共方法 public static string ConvertToChineseNum(double inputString) { string numList = "零壹贰叁肆伍陆柒捌玖"; string rmbList = "分角元拾佰仟万拾佰仟亿拾佰仟万"; double number = 0; string tempOutString = null; try { number = inputString; } catch { return "传入参数非数字!"; } if (number > 9999 阅读全文
posted @ 2014-02-25 18:07 浩凡儿 阅读(568) 评论(0) 推荐(0) 编辑
摘要: /// /// 加密字符串 /// 注意:密钥必须为8位 /// /// 字符串 /// 密钥 /// 返回加密后的字符串 public static string Lock(string inputString, string encryptKey) { byte[] byKey = null; byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; try { byKey = System.Text.Encoding.UTF8.GetBytes(encryptKey.Substring(0, 8)); ... 阅读全文
posted @ 2014-02-25 17:56 浩凡儿 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 关于权限管理文章整理1. AppBox v2.0中的权限实现http://www.cnblogs.com/sanshi/p/3274824.html2..NET通用权限系统快速开发框架 http://blog.csdn.net/shecixiong/article/details/105749673. 通用权限管理 http://blog.csdn.net/xiyang_1990/article/details/97683854. ASP.NET MVC+EF框架+EasyUI实现权限管理(附源码) http://blog.csdn.net/huanglei0809/article/detai 阅读全文
posted @ 2014-02-25 15:40 浩凡儿 阅读(530) 评论(1) 推荐(0) 编辑