摘要: ASCII, American Standard Code for Information Interchange 念起来像是 "阿斯key",定义从 0 到 127 的一百二十八个数字所代表的英文字母或一样的结果与意义。由于只使用7个位元(bit)就可以表示从0到127的数字,大部分的电脑都使用8个位元来存取字元集(character set),所以从128到255之间的数字可以用来代表另一组一百二十八个符号,称为 extended ASCII。ASCII码键盘ASCII 码键盘ASCII码键盘ASCII 码键盘27ESC32SPACE33!34"35#36$3 阅读全文
posted @ 2012-05-30 20:43 爱智旮旯 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: <script language="Javascript"><!-- //屏蔽鼠标右键、Ctrl+N、Shift+F10、F11、F5刷新、退格键function document.oncontextmenu(){event.returnValue=false;}//屏蔽鼠标右键function window.onhelp(){return false} //屏蔽F1帮助function document.onkeydown(){ if ((window.event.altKey)&& ((window.event.keyCode==37) 阅读全文
posted @ 2012-05-30 20:34 爱智旮旯 阅读(1466) 评论(0) 推荐(0) 编辑
摘要: 1、只有下划线的文本框:<input style="border:0;border-bottom:1 solid black;">2、软件序列号式的输入框:<script for="T" event="onkeyup">if(value.length==maxLength)document.all[event.srcElement.sourceIndex+1].focus();</script><script for="T" event="onfocus" 阅读全文
posted @ 2012-05-30 19:46 爱智旮旯 阅读(633) 评论(0) 推荐(1) 编辑
摘要: 输入框信息提示简单不多说!<input id="search" type="text" onblur="if (this.value =='') this.value='Information content'" onClick="if (this.value=='Information content')this.value=''" value='Information content' /> 阅读全文
posted @ 2012-05-30 19:30 爱智旮旯 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 今天在网上看了一个文件操作类,没有全部测试,先记下来以后进行测试!---->>/**文件操作类 **/ #region 引用命名空间 using System; using System.Collections.Generic; using System.Text; using System.IO; #endregionnamespace CommonUtilities { /// <summary> /// 文件操作类 /// </summary> public class FileHelper { #region 检测指定目录是否存在... 阅读全文
posted @ 2012-05-30 18:51 爱智旮旯 阅读(621) 评论(1) 推荐(1) 编辑