上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: http://dotnet.aspx.cc/article/6381bd5f-51f3-4339-4239-1328564a1b2a/read.aspx 阅读全文
posted @ 2011-05-18 23:43 叶晓丰 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 今天看了一篇文章,是介绍JQ中的排序问题。用到的是它的一个插件tablesorter.js,更丰富的话还会用到jquery-latest.js以及jquery.tablesorter.pager.js。用到的语句是这样的:JavaScript Code复制内容到剪贴板$(document).ready(function() {$("#myTable").tablesorter( {sortList: [[0,0], [1,0]]} );}) 有点不太明白,查了下sortList的参数,但是没有任何结果。后来在一位大哥的指点下找到了答案:排序列表[0,0][1,0],按第一列,第二列进行升序排序 阅读全文
posted @ 2011-02-18 20:21 叶晓丰 阅读(818) 评论(0) 推荐(0) 编辑
摘要: System.IO.MemoryStream Ms = new MemoryStream(); this.pcbEquipment.Image.Save(Ms, System.Drawing.Imaging.ImageFormat.Jpeg); byte[] img = new byte[Ms.Length]; Ms.Position = 0; Ms.Read(img, 0, Convert.To... 阅读全文
posted @ 2011-01-27 21:58 叶晓丰 阅读(506) 评论(2) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--[OperationContract]publicvoidDoUpload(stringfileName,byte[]context,boolappend){//上传目录stringfolder=System.Web.Hosting.HostingEnvironment.MapPath("~/upload");if(!System.IO.Directory.Exists(folder)){//如果 阅读全文
posted @ 2011-01-27 21:12 叶晓丰 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Response.Write(Request.Url.GetLeftPart(System.UriPartial.Authority)); 这个能获取到uri部分即: http://www.goudiannao.com http://www.goudiannao.com/root/sub/abc.aspxroot是虚拟目录名,sub是子目录,abc.aspx是文件名想等得到全部Request.Url.AbsoluteUri想得到http://localhostRequest.Url.GetLeftPart(System.UriPartial.Authority)想得到/rootRequest 阅读全文
posted @ 2011-01-18 14:52 叶晓丰 阅读(514) 评论(0) 推荐(0) 编辑
摘要: http://www.open-open.com/ajax/ajax20080711140016.htm 阅读全文
posted @ 2011-01-02 20:53 叶晓丰 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 本次为大家收集的是10+个jQuery图片滚动插件,希望对您的日常工作会有很大的帮助,在页面的最后奉献的是用jQuery插件实现图片滚动的几个站点,希望您会喜欢!!   1、jCarousel      这款jquery图片滚动插件用的人很多,功能上颇为强大,你可以控制是水平滚动还是垂直滚动。   2、jCarousel Lite      这款插件优势在于小巧,只有2K的js,当然功能上会差些。   3、jQuery Carousel      更像一个幻灯片,你可以控制图片滑动方向。   4、jQuery Infinite Carousel      5、Loope 阅读全文
posted @ 2011-01-02 20:45 叶晓丰 阅读(791) 评论(2) 推荐(0) 编辑
摘要: !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"html xmlns="http://www.w3.org/1999/xhtml"headmeta http-equiv="Content-Type" content="text/html; charset=utf-8" /titleTest/titlescript type="text/javascript" language="j 阅读全文
posted @ 2011-01-02 16:00 叶晓丰 阅读(337) 评论(0) 推荐(0) 编辑
摘要: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ 阅读全文
posted @ 2011-01-02 15:05 叶晓丰 阅读(189) 评论(0) 推荐(0) 编辑
摘要: http://www.blogjava.net/wangxinsh55/archive/2008/11/24/242295.htmlhttp://www.malsup.com/jquery/block/#demos 阅读全文
posted @ 2011-01-01 20:08 叶晓丰 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页