摘要: 使用Frameset 框架,发现在IE下, 但是在 Google Chrome 中,会报错情况 : 无法读取cols属性。 解决方案: Frameset 添加ID,在JS中 使用 document.getElementById 来获取ID 的 cols 最后吐槽:为什么少于150字的随笔不允许发布到 阅读全文
posted @ 2018-10-22 17:43 AiKier 阅读(726) 评论(2) 推荐(0)
摘要: oracle 11G, MVC4.0 项目,因刚重装系统,重新安装的VS2010, ORACLE 11G 运行项目,后报错 找不到请求的 .Net Framework Data Provider。可能没有安装. 经过检查,将 oracle 安装后的目录下,11.2.0\dbhome_2\ODP.NE 阅读全文
posted @ 2017-07-07 17:07 AiKier 阅读(265) 评论(0) 推荐(0)
摘要: 打开PL/SQL 登录窗口,在数据库地址写入 服务器名:端口号/sid 即可, 例如: 192.168.100.100:1521/test 阅读全文
posted @ 2017-07-07 17:01 AiKier 阅读(193) 评论(0) 推荐(0)
摘要: 然后 最后展示 后台通过Post,FormCollection取出数据 阅读全文
posted @ 2016-12-05 17:32 AiKier 阅读(387) 评论(0) 推荐(0)
摘要: //年份转换为大写汉字 public static string numtoUpper(int num) { return "零壹贰叁肆伍陆柒捌玖"[num].ToString(); } //月份转换大写汉字 public static string monthtoUpper(int month) ... 阅读全文
posted @ 2016-08-16 17:34 AiKier 阅读(934) 评论(0) 推荐(1)
摘要: 调用接口 读取服务器上 图片 报错: Server was unable to process request. > Access to the path '图片路径' is denied. 解决方法: 文件夹添加 一个 everyone 操作权限 阅读全文
posted @ 2016-05-18 10:00 AiKier 阅读(406) 评论(0) 推荐(0)
摘要: 记得最开始 using System.Text.RegularExpressions; Regex m_regex = new System.Text.RegularExpressions.Regex("^(-?[0-9]*[.]*[0-9]{0,3})$"); bool b = m_regex.I 阅读全文
posted @ 2016-04-20 16:58 AiKier 阅读(906) 评论(0) 推荐(0)
摘要: 在解决方案——Web 右键 发布如图:之后,在其他文件夹或盘 放入发布之后 生成的文件如图所示,之所以这样是为了好整理查找发布的项目。之后,在IIS 上发布出去首先 打开控制面板——程序和功能左边找到 打开或关闭Windows功能 确保信息服务已打开,可以根据自己需求 按需求勾选(我这里是全部都... 阅读全文
posted @ 2015-11-13 11:56 AiKier 阅读(1190) 评论(4) 推荐(1)
摘要: functionselectAll(checkbox){$('input[type=checkbox]').attr('checked',$(checkbox).attr('checked'));}全选gridview 或 Repeater 中 阅读全文
posted @ 2015-11-02 14:58 AiKier 阅读(357) 评论(0) 推荐(0)