E_T

导航

2015年11月10日

摘要: //生成二维码 private static Bitmap CreateQrCode(string printString) { EncodingOptions options = null; BarcodeWriter wri... 阅读全文

posted @ 2015-11-10 20:13 E_T 阅读(194) 评论(0) 推荐(0)

2015年10月7日

摘要: 如果我们在一台服务器即使用IIS作为WEB服务器,同时又想使用Apache作为WEB服务器,那么如何来公用80端口呢?我们可以使用单IP地址来实现,但是在性能上有损失:将apache设为使用80端口,IIS使用其它端口,比如81,然后将apache作为IIS的代理。速度有影响.在httpd.conf... 阅读全文

posted @ 2015-10-07 14:23 E_T 阅读(206) 评论(0) 推荐(0)

2015年9月22日

摘要: 字符型转换为字符串// C 货币2.5.ToString("C"); // ¥2.50// D 10进制数25.ToString("D5"); // 25000// E 科学型25000.ToString("E"); // 2.500000E+005// F 固定点25.ToString("F2")... 阅读全文

posted @ 2015-09-22 18:36 E_T 阅读(816) 评论(0) 推荐(0)

2015年9月10日

摘要: /判断输入内容是否为空function IsNull(){ var str = document.getElementById('str').value.trim(); if(str.length==0){ alert('对不起,文本框不能为空或者为空格!');//请将“文本框”改成你需要验证的属性... 阅读全文

posted @ 2015-09-10 19:28 E_T 阅读(147) 评论(0) 推荐(0)

2015年8月13日

摘要: var provinceStore = Ext.create('Ext.data.Store', { fields: ['id', 'name'], proxy: { type: 'ajax', ... 阅读全文

posted @ 2015-08-13 09:34 E_T 阅读(605) 评论(0) 推荐(0)

2015年7月29日

摘要: 阅读全文

posted @ 2015-07-29 17:07 E_T 阅读(183) 评论(0) 推荐(0)

2015年7月23日

摘要: if object_id('[pactinfo]') is not null drop table [pactinfo]gocreate table [pactinfo]([id] int,[pactname] varchar(4))insert [pactinfo]select 1,'正常' un... 阅读全文

posted @ 2015-07-23 11:48 E_T 阅读(547) 评论(0) 推荐(0)

2015年7月16日

摘要: 参数上传和文件上传大小限制调整,参数上传最大2097151 阅读全文

posted @ 2015-07-16 10:08 E_T 阅读(159) 评论(0) 推荐(0)

摘要: 前台,form的target指向iframe ... 阅读全文

posted @ 2015-07-16 10:06 E_T 阅读(415) 评论(0) 推荐(0)

2015年7月7日

摘要: 计算字符串的字节长度String.prototype.len = function () { return this.replace(/[^\x00-\xff]/g, 'xx').length;};alert(t.Calendar.len());//保留两位小数 //功能:... 阅读全文

posted @ 2015-07-07 09:07 E_T 阅读(162) 评论(0) 推荐(0)