摘要:
//判断是否IE浏览器function isIE2(){ var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var isIE = userAgent.indexOf("MSIE") > -1; //判断是否IE return isIE 阅读全文
摘要:
http://www.cnblogs.com/mofish/archive/2012/11/30/2796698.html 原网址 基于jquery的文件上传控件,支持ajax无刷新上传,多个文件同时上传,上传进行进度显示,删除已上传文件。 要求使用jquery1.4或以上版本,flash play 阅读全文
摘要:
http://www.cnblogs.com/xiaopin/archive/2011/03/31/2001199.html 原网址,这个写的特别好: 其他实现方式参考:http://blog.csdn.net/lee576/archive/2011/03/02/6217811.aspx prote 阅读全文
摘要:
private void lbCity_SelectedIndexChanged(object sender, EventArgs e) { 写逻辑 } 阅读全文
摘要:
StreamReader sr = new StreamReader(Application.StartupPath + "\\config.txt", Encoding.Default); 读取下面的内容 string cityInfo = sr.ReadToEnd(); sr.Close(); 阅读全文
摘要:
WINFROM: StreamReader sr = new StreamReader(Application.StartupPath + "\\config.txt", Encoding.Default);//获取路径 string cityInfo = sr.ReadToEnd();//读取内容 阅读全文
摘要:
案例一: //声明一个委托 delegate void DEAddListPhone(string txt); //要调用的方法执行的逻辑private void AddListNo(string txt){txtNotOpen.Text += txt + "\r\n";} //需要的时候直接调用 阅读全文