摘要: 一、HTML: 明细 删除 确认 添加 View Code二、JS:View Code三、完整示例页面:@{ Layout = "~/Views/Shared/_Layout.cshtm... 阅读全文
posted @ 2015-06-11 17:54 0611163 阅读(1007) 评论(0) 推荐(0) 编辑
摘要: 一、引用CSS和JS:View Code二、HTML: View Code三、创建编辑器对象:var ue;$(function () { $(function () { ue = UE.getEditor('ueditor', { maximumWords... 阅读全文
posted @ 2015-06-08 13:05 0611163 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 一、引用CSS和JS:View Code二、HTML:View Code三、JS:$(function () { var total = parseInt("@(ViewBag.total)"); var page = parseInt("@(ViewBag.page)") - 1; ... 阅读全文
posted @ 2015-06-08 12:48 0611163 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 编写了一个简单的串口映射工具,方便调试串口 代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using 阅读全文
posted @ 2015-05-20 13:15 0611163 阅读(1095) 评论(0) 推荐(0) 编辑
摘要: 由于是触摸屏,所以需要一款JS虚拟键盘。上网找了一个好用的VirtualKeyboard,作了修改。 修改该插件参考的博客文章:http://www.cnblogs.com/xinggong/archive/2013/02/07/2908534.html 下载链接:JS虚拟键盘Virtual... 阅读全文
posted @ 2015-02-28 10:33 0611163 阅读(1168) 评论(0) 推荐(1) 编辑
摘要: JS数字键盘,JS小键盘CSS代码:#numberkeyboard{ border: 1px solid #b3b3b3; background: #f2f3f7; height: 285px; margin: 0; padding: 2px; position:... 阅读全文
posted @ 2015-02-28 09:47 0611163 阅读(863) 评论(0) 推荐(0) 编辑
摘要: HTML的select控件美化CSS:.div-select{ border: solid 1px #999; height: 40px; line-height: 40px; cursor: default;}.div-select-text{ float: left... 阅读全文
posted @ 2015-02-08 22:28 0611163 阅读(3245) 评论(2) 推荐(1) 编辑
摘要: checkbox和radio的美化checkbox: 测试101 ... 阅读全文
posted @ 2015-02-08 14:27 0611163 阅读(501) 评论(3) 推荐(0) 编辑
摘要: 最近写C#串口通信程序,系统是B/S架构。SerialPort类有一个DataReceived事件,用来接收串口返回的数据,但这种方式在C/S架构下很好用,但B/S就不好处理了。所以写了一个同步模式接收返回数据的方法,不使用DataReceived事件。经过测试,可以正常使用。 一、Machi... 阅读全文
posted @ 2015-01-16 21:59 0611163 阅读(11191) 评论(0) 推荐(1) 编辑
摘要: 生成验证码的类:using System;using System.Collections.Generic;using System.Drawing;using System.Text;namespace Controllers.Core.Util{ /// /// 验证码 //... 阅读全文
posted @ 2014-12-29 21:05 0611163 阅读(1130) 评论(0) 推荐(0) 编辑