码迷,mamicode.com
首页 > Web开发
离开(关闭)网页前弹出提示
破碎锤皮碗
分类:Web程序   时间:2014-07-16 23:16:23    阅读次数:211
lnmp压力测试结果php处理能力低,增加pm.max_children后一样没提升
lnmp架构是现在很常用的,拜读过张晏的博客,内核,php-fpm,nginx,fastcgi进行调优,用autobench压力测试,访问php页面,从100个并发开始,每次加50个,直到1000个并发,pm=static,pm.max_children=128,机器8G内存,CPU是L5520,测...
分类:Web程序   时间:2014-07-16 23:16:55    阅读次数:352
.Net常用技巧_目录与文件操作
using System;using System.Collections.Generic;using System.Text;using System.IO;namespace MyTool{ public class FileOperator { /// ...
分类:Web程序   时间:2014-07-16 23:16:59    阅读次数:236
.Net常用技巧_解压缩byte数组
1,需要引用命名空间using System.IO.Compression;2,//压缩byte数组方法private byte[] ComPress(byte[] data) { try { MemoryStr...
分类:Web程序   时间:2014-07-16 23:17:08    阅读次数:333
Html5新标签解释及用法
点评:HTML 5 是一个新的网络标准,目标在于取代现有的 HTML 4.01, XHTML 1.0 and DOM Level 2 HTML 标准-它希望能够减少浏览器对于需要插件的丰富性网络应用服务(plug-in-based rich internet application,RIA),如Ad...
分类:Web程序   时间:2014-07-16 23:17:31    阅读次数:273
无刷新分页代码,jQuery分页完整示例
jQuery分页演示效果 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum consectetur ipsum sit amet urna euismod imperdiet aliquam urna l...
分类:Web程序   时间:2014-07-16 23:17:53    阅读次数:256
巧用css border
上下左右边框交界处呈现平滑的斜线。利用这个特点,通过设置不同的上下左右边框宽度或颜色,可以得到小三角、梯形等。调整宽度大小可以调节三角形形状。实现三角形示例1:#test1{ height:20px; width:20px; border-color:#FF9600 #3366ff...
分类:Web程序   时间:2014-07-16 23:18:06    阅读次数:260
js笔记
如果你有一个div用来做输出控制台,因为内容是不断增加的,那你自然希望这个div或textarea能永远显示最下面一行:var el = document.getElementById('someid');el.scrollTop = el.scrollHeight;你在setTimeout之类的时...
分类:Web程序   时间:2014-07-16 23:18:51    阅读次数:250
.Net常用技巧_TextBox文本框限制输入的内容
1,限制只能输入数字 private void txtSize_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != 8 && e.KeyChar != 13 && !char.IsDi...
分类:Web程序   时间:2014-07-16 23:18:55    阅读次数:256
.Net常用技巧_生成物料编号(根据分类代码生成)
这个是自己用的,不一定符合您的需求。using System;using System.Collections.Generic;using System.Text;using EXDataControl;using System.Data;using System.Data.SqlClient;us...
分类:Web程序   时间:2014-07-16 23:19:13    阅读次数:304
.Net常用技巧_读取XML某节点例子
注:此例子只是自己在代码中为了读某固定的几个值,写的有点死,所以另作他用的时候请自行修改或扩充using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syste...
分类:Web程序   时间:2014-07-16 23:19:18    阅读次数:316
.Net常用技巧_传入DataGrid直接导出成Excel
注:非调用OFFICE的DLL方法。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;u...
分类:Web程序   时间:2014-07-16 23:19:22    阅读次数:352
jsp、freemarker、velocity的比较(转)
[本文摘自http://suliuyes.iteye.com/blog/1250444,待整理]freemarker优点:1、不能编写java代码,可以实现严格的mvc分离2、性能非常不错3、对jsp标签支持良好4、内置大量常用功能,使用非常方便5、宏定义(类似jsp标签)非常方便6、使用表达式语言...
分类:Web程序   时间:2014-07-16 23:19:49    阅读次数:478
验证码-WebVcode
验证码的实现 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Session["Vcode"] = ...
分类:Web程序   时间:2014-07-16 23:20:29    阅读次数:258
js中substr与substring的差别
Js的substring和C#的Substring的作用都是从一个字符串中截取出一个子字符串,但它们的用法却有非常大的不同,下边我们来比較看看:Js的substring语法:程序代码String.substring(start, end)说明:返回一个从start開始到end(不包括end)的子字符...
分类:Web程序   时间:2014-07-16 23:20:43    阅读次数:313
博客代码:iframe—网页中嵌入其他网页
iframe 是一个可以把另外一个网页嵌入到一个网页里的代码,非常有用。对于一个内容不错的网页,要方便地把它搬到自己的博客里,用这个代码最合适。而对于在新浪博客里不支持的一些网页效果和代码,可先把他们设置好,在支持他们的网站上使用,或上传到一个免费的网络空间或网络硬盘里,获取相应的网页地址,然后用 ...
分类:Web程序   时间:2014-07-16 23:20:47    阅读次数:286
linux常用命令 、查看日志、web排查
linux常用命令ps aux|grep xxx (比如 ps aux|grep tomcat ps aux|grep tomcat-portalvip ps aux|grep nginx 等)rpm -qa|grep xxx (查找系统有没有安装 比如 rpm -qa|grep mysql rpm...
分类:Web程序   时间:2014-07-16 23:20:56    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!