自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

樊潇洁的博客

http://asprain.cn

  • 博客(20)
  • 资源 (36)
  • 收藏
  • 关注

翻译 NewtonSoft.JSON官方手册中文版【连载20】

利用JSON模式校验JSONJson.NET通过JsonSchema类和 JsonValidatingReader类来支持JSON模式标准。它位于Newtonsoft.Json.Schema命名空间中。JSON模式用来校验JSON片段的结构和数据类型,类似于XML模式对于XML。你可以在此处读取JSON模式:json-schema.orgNote 过时!JSON模式校验已经被移...

2019-11-27 15:20:43 577

翻译 NewtonSoft.JSON官方手册中文版【连载19】

性能贴士开箱即用的Json.NET比DataContractJsonSerializer和JavaScriptSerializer更快。此处有一些贴士,让它变得更快重用契约解析器 优化内存使用 JsonConverters 手工序列化 基准重用契约解析器IContractResolver在把.NET类型解析为序列化过程中在JsonSerializer内部使用的契约。创建契约涉...

2019-11-27 15:19:52 378

翻译 NewtonSoft.JSON官方手册中文版【连载18】

配合LINQ查询JSONLINQ to JSON提供了很多方法,用来从它的对象中读取数据。JObject/JArray上的索引方法让你能够依靠它在对象上的属性名称或集合中的索引来快速取得数据,而Children()让你能够把数据的范围读取为 IEnumerable<JToken>,然后利用LINQ来查询。通过属性名称或集合索引来取得值 利用LINQ查询通过属性名称或集合索引...

2019-11-27 15:17:50 329

翻译 NewtonSoft.JSON官方手册中文版【连载17】

LINQ to JSONLINQ to JSON是用来处理JSON对象的API。它的设计考虑了LINQ,以支持快速查询和创建JSON对象。LINQ to JSON位于Newtonsoft.Json.Linq命名空间下面。使用LINQ for JSONJObject o = JObject.Parse(@"{ 'CPU': 'Intel', 'Drives': [ 'DVD...

2019-11-27 15:15:58 549

翻译 NewtonSoft.JSON官方手册中文版【连载16】

带序列化跟踪的调试Json.NET支持利用ITraceWriter实现记录日志和调试。通过分配跟踪写入程序,您可以捕获序列化消息和错误,并在序列化JSON和反序列化JSON时调试Json.NET序列化器内部发生的情况。ITraceWriter Custom ITraceWriterITraceWriter一个跟踪写入程序,可以利用JsonSerializerSettings或Jso...

2019-11-27 15:12:07 442

翻译 NewtonSoft.JSON官方手册中文版【连载15】

使用Serialization序列化IContractResolver接口提供了一种自定义方式,自定义JsonSerializer如何把.NET对象序列化为JSON,以及如何把JSON反序列化为.NET对象,而不需要在你的类上放置任何特性。任何可以在对象、集合、属性等元素上设置的、使用特性或方法来控制序列化的功能,使用一个IContractResolver来设置。DefaultCont...

2019-11-27 15:06:21 378 1

翻译 NewtonSoft.JSON官方手册中文版【连载14】

有条件的属性序列化Json.NET具有有条件地序列化属性的能力,只要在类上放置ShouldSerialize方法。此功能类似于XmlSerializer 的ShouldSerialize功能。ShouldSerialize IContractResolverShouldSerialize若要有条件地序列化一个属性,添加一个方法,带有和属性相同的名称,并返回布尔值,然后方法名称加前缀...

2019-11-27 15:03:57 245

翻译 NewtonSoft.JSON官方手册中文版【连载13】

反序列化部分JSON片段通常,在操作大型的JSON文档时,你可能只对一小段信息感兴趣。当你想把JSON片段反序列化为.NET对象时,这种情形可能会比较烦人,因为你不得不针对整个JSON结果定义.NET类。利用Json.NET很容易变通地解决此问题。使用LINQ to JSON你可以先提取你想要反序列化的Json的小块,再把它们传给Json.NET序列化器。片段对象public c...

2019-11-27 15:02:13 689

翻译 NewtonSoft.JSON官方手册中文版【连载12】

缩小序列化的JSON的大小在把.NET对象序列化为JSON时可能的一个常见的问题是,JSON最终包含了很多不想要的属性和值。在把JSON返回到客户端时,它可能会特别显著。更大的JSON意味着占用更大的带宽和产生更慢的网站。为了解决不想要的JSON的问题,Json.NET有很多的内置选项,来细调序列化对象中会写入哪些内容。JsonIgnoreAttribute和DataMemberAtt...

2019-11-27 15:00:59 387

翻译 NewtonSoft.JSON官方手册中文版【连载11】

在JSON中序列化日期JSON中的日期时间是很难的。这个问题来自于JSON规范文档本身:JSON中没有针对日期的字面值语法。此规范文档具有对象、数组、字符串、整型数以及浮点数,但是它没有为日期应该如何表示定义标准。日期和Json.NET DateTime JsonConverters JavaScriptDateTimeConverter IsoDateTimeConverter...

2019-11-27 15:00:03 269

翻译 NewtonSoft.JSON官方手册中文版【连载10】

序列化集合Json.NET对序列化对象集合和反序列化对象集合提供了卓越的支持。序列化集合 反序列化集合 反序列化字典序列化集合若要序列化一个集合——一个泛型列表、数组、字典或你自己的自定义集合——只要调用序列化器,带上你想要得到JSON的对象。Json.NET将序列化此集合,以及它包含的所有的值。序列化集合Product p1 = new Product{ Nam...

2019-11-26 22:51:49 216

翻译 NewtonSoft.JSON官方手册中文版【连载9】

CustomCreationConverterCustomCreationConverter<T> 是一个JsonConverter,它提供了一种方式来自定义在JSON反序列化过程中如何创建对象。一旦创建了对象,序列化器将在其上填充值。示例CustomCreationConverterpublic interface IPerson{ string FirstN...

2019-11-26 22:50:49 397

翻译 NewtonSoft.JSON官方手册中文版【连载8】

保留对象引用默认情况下,Json.NET将按值序列化它遇到的所有对象。如果一个列表包含了两个Person引用,两个引用指向同一个对象,则JsonSerializer将为每个引用写出所有的名称和值。保留对象引用关闭Person p = new Person{ BirthDate = new DateTime(1980, 12, 23, 0, 0, 0, DateTimeKind....

2019-11-26 22:49:24 307

翻译 NewtonSoft.JSON官方手册中文版【连载7】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化错误处理Json.NET支持序列化和反序列化过程中的错误处理。错误处理让你能够捕获错误,并选择是否处理错误,并继续序列化,或让错误在应用程序中冒泡并抛出错误。通过两种方法定义了错误处理:在JsonSerializer上的Error事件以及OnErrorAttribute。Erro...

2019-11-26 22:47:56 246

翻译 NewtonSoft.JSON官方手册中文版【连载6】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化回调函数Json.NET支持序列化回调函数方法。在JsonSerializer序列化一个对象之前或之后、反序列化一个对象之前或之后,回调函数可以用来操作这个对象。OnSerializing OnSerialized OnDeserializing OnDeserialized...

2019-11-26 22:45:35 269

翻译 NewtonSoft.JSON官方手册中文版【连载5】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化特性可以用来控制Json.NET如何序列化和反序列化.NET对象的特性。JsonObjectAttribute -放置在一个类上,以控制如何把类序列化为JSON对象。 JsonArrayAttribute -放置在一个集合上,以控制如何把集合序列化为JSON数组。 JsonD...

2019-11-26 22:42:56 640

翻译 NewtonSoft.JSON官方手册中文版【连载4】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化教程Json.NET序列化器可以序列化各种各样的.NET对象。此教程着眼于它如何工作,先讲高层次,后深入细节。摘要 复合类型 基元类型 类型序列化的分解摘要在高层次,Json.NET序列化器将把基元.NET值转换为基元JSON值,将把.NET数组和集合转换为JSON...

2019-11-26 22:41:07 354

翻译 NewtonSoft.JSON官方手册中文版【连载3】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化设置JsonSerializer具有很多属性,可以用它们来自定义如何序列化JSON。通过JsonSerializerSettings重载,这些属性也可以与JsonConvert方法配合使用。DateFormatHandling MissingMemberHandling Refe...

2019-11-26 22:37:32 695

翻译 NewtonSoft.JSON官方手册中文版【连载2】

即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!序列化和反序列化JSON在JSON文本和某个.NET对象之间转换,最快捷的方法是使用JsonSerializer。JsonSerializer把.NET对象转换为它们的JSON等价物,并转换回来,方法是把.NET对象的属性名映射到JSON属性名,并复制它们的值。JsonConvert J...

2019-11-26 22:35:20 431 1

翻译 NewtonSoft.JSON官方手册中文版【连载1】

原资料地址:https://www.newtonsoft.com/json/help/html/Introduction.htm即将推出本人原译的NewtonSoft.JSON官方手册中文版完整文档(.chm格式),敬请期待!NewtonSoft.JSON的特色:世界级的JSON序列化器利用Json.NET的强大的JSON序列化器来序列化和反序列化任何.NET对象LINQ to ...

2019-11-26 22:32:09 811

2019年上半年软件考试(二级软件设计师)下午试题真题和答案.zip

2019年上半年软件考试(2019年11月9日)(二级软件设计师)下午试题真题和答案。非希赛网版本,非软考在线版本。而是本人亲自收集整理。包含了试题和答案,以及C语言编程题、Java编程题的完整代码。均经仔细测试确认无误。本人今年还半下还要去参加此考试二刷,在此求个好人品。

2020-08-16

2019年下半年软件考试(二级软件设计师)下午试题真题和答案.zip

2019年下半年软件考试(2019年11月9日)(二级软件设计师)下午试题真题和答案。非希赛网版本,非软考在线版本。而是本人亲自收集整理。包含了试题和答案,以及C语言编程题、Java编程题的完整代码。均经仔细测试确认无误。本人今年还半下还要去参加此考试二刷,在此求个好人品。

2020-08-10

XMLDOM参考手册

XMLDOM参考手册 ,包括XMLDOM、XMLDOMNode、XMLDOMSelection、XMLDOMList、XMLDOMElement、XMLDOMText、XMLDOMCDATASection、XMLDOMCharacterData、XMLDOMComment、XMLDOMDocumentType、XMLDOMEntity、XMLDOMEntityReference、XMLDOMParseError的一切属性、方法、事件、常数。 英文版。但是很好懂的。

2013-02-11

jquery_api_1.9

jQuery API 1.9 英文版 求高人翻译。 我费了好大的劲从网上下载下来整理好的。

2013-02-03

javascript宝典第6版 书中所附源码

javascript宝典第六版 书中所有案例的源码,你懂的!

2012-03-29

windows server 2008中文版 帮助文件

aclui.CHM 访问控制 ad_ds.CHM Active Directory 域服务 adam.CHM Active Directory 轻型目录服务 adfs.CHM Active Directory 联合身份验证服务 adsiedit.CHM ADSI 编辑器 applocker_help.CHM Windows AppLocker appserver.CHM 应用程序服务器 authfw.CHM 具有高级安全性的 Windows 防火墙 authm.CHM 授权管理器 backup.CHM Windows Server Backup bitssrv.CHM 后台智能文件传送服务 (BITS) certmgr.CHM 证书 certsvr.CHM Active Directory 证书服务 certtmpl.CHM 证书模板 cliconf.chm SQL Server 客户端网络实用工具 cluadmin.CHM 故障转移群集 cmak_ops.CHM 连接管理器管理工具包 comexp.CHM 组件服务管理 connmgr.CHM 连接管理器 da_snap.CHM DirectAccess desktopexp.CHM 桌面体验概述 devmgr.CHM 设备管理器 dfs2.CHM DFS 管理 dhcp.CHM 动态主机配置协议 (DHCP) diskmgt.CHM 磁盘管理 dnsmgr.CHM 域名系统 domadmin.CHM Active Directory 域和信任关系 dsac.CHM Active Directory 管理中心 dsadmin.CHM Active Directory 用户和计算机 dssite.CHM Active Directory 站点和服务 eventviewer.CHM 事件查看器 faxcons.CHM 传真服务管理器 features.CHM Windows Server 2008 R2 中的可用功能 file_srv.CHM 共享文件夹 fsm.CHM 文件服务 fsrm.CHM 文件服务器资源管理器 gpedit.CHM 本地组策略编辑器 gpmc.CHM 组策略管理控制台 hra.CHM 健康注册机构 ieakmmc.CHM Internet Explorer 维护 iismmc.CHM Internet 信息服务(IIS)6.0管理器 inetsrvmmc.CHM Internet 信息服务(IIS)管理器 ipsecmonitor.CHM IPSec监视器 ...

2012-03-12

asprain论坛Sql版v1.3

10月4日的修正 01.修正chrims皮肤的显示不正常的问题。 02.修正首页分区间广告不起作用的问题。 03.修正部分空广告内容也被保存到数据库的问题 04.修改了默认皮肤的那个过于难看的“发表话题”按钮 05.添加了百度sitemap_baidu.xml功能。 现在安装包自解压后根目录下有一个sitemap_baidu.asp的文件,是按百度sitemap协议制作的http://www.baidu.com/search/sitemap_help.html。你需要在http.ini里加这么一行内容: RewriteRule ^(.*)/sitemap_baidu\.xml(.*)$ $1/***/sitemap_baidu\.asp 其中***/是您安装论坛的子目录。如果你的论坛是安装在根目录下的,就写成下面这样好了。 RewriteRule ^(.*)/sitemap_baidu\.xml(.*)$ $1/sitemap_baidu\.asp 详情请看官方网站http://www.asprain.com/topic.asp?id=561

2010-10-04

asprain论坛Sql版v1.3

10月4日的修正 01.修正chrims皮肤的显示不正常的问题。 02.修正首页分区间广告不起作用的问题。 03.修正部分空广告内容也被保存到数据库的问题 04.修改了默认皮肤的那个过于难看的“发表话题”按钮 05.添加了百度sitemap_baidu.xml功能。 现在安装包自解压后根目录下有一个sitemap_baidu.asp的文件,是按百度sitemap协议制作的http://www.baidu.com/search/sitemap_help.html。你需要在http.ini里加这么一行内容: RewriteRule ^(.*)/sitemap_baidu\.xml(.*)$ $1/***/sitemap_baidu\.asp 其中***/是您安装论坛的子目录。如果你的论坛是安装在根目录下的,就写成下面这样好了。 RewriteRule ^(.*)/sitemap_baidu\.xml(.*)$ $1/sitemap_baidu\.asp 详情请看官方网站http://www.asprain.com/topic.asp?id=561

2010-10-04

asprain论坛Sql版v1.1

2月26日以来的bug修正: 01.[修正]用户在阅读新信之前把它删掉,会导致反复提示“你有新的信件,请注意查找”的bug 02.[修正]后台批量添加会员头衔出错的bug 03.[修正]后台功能搜索的bug 04.[修正]后台网站信息设置中不能修改description的bug 05.[修改]把后台的一些地方,“重置”按钮改成“刷新”按钮 06.[修改]用户修改自己的密码的时候,自动更新cookies 07.[修正]上传图片最大宽度和最大高度不能设为0的bug 08.[修正]后台添加网站公告无法即时更新的bug3月16日以来的修正 01.[更新]版主进行帖子操作(删除回复、加精、移动帖子、取消精华等操作)完成后,页面不需要再跳转,进一步减少了带宽流量,增强了操作便捷性。 02.[更新]回复帖子,如果遇到“对不起,字数不够”或者其它不能提交的问题时,不需要再刷新后重写了,只需要继续写帖子,写完提交就行。 03.[修正]管理员不能设置帖子版内置顶的问题 04.[修正]后台不能修改用户注册协议的问题 05.[更新]在“站内信箱”里加了一个“全部设为已读”的功能。这样有时候遇到明明没有新信,却不断地提示“您有新的消息”的问题可以轻松解决了: 06.[修正]在后台对版块添加了版主之后,版主不能立即获得管理权的问题 07.[修正]在后台修改版块信息时,如果版块下面还有子版块就会出错的问题 08.[修正]在后台添加页头广告时莫名其妙地变成两侧对联广告的bugasprain

2010-03-24

asprain论坛Access版V1.1

论坛是一个适合于各中小学、中专、技校、职高建设校园论坛、师生交流论坛,一些教科研部门、公司企业建设内部论坛、IT技术爱好者建设技术交流论坛的免费论坛程序。它有两个版本,分别是asp+Access版和asp+sqlServer版,功能完全一致,建站者可以根据自己的需要选用不同的版本。 Asprain论坛体积小巧,但是功能完整。它前端脚本基于jquery框架,跨浏览器性能出色。对IE6、IE7、IE8、firefox、Chrome、Saferi、Opera七种主流浏览器有良好的兼容性。可以轻松松换肤,制作个性皮肤也很方便,只要修改几个css就可以了。 2月26日以来的bug修正: 01.[修正]用户在阅读新信之前把它删掉,会导致反复提示“你有新的信件,请注意查找”的bug 02.[修正]后台批量添加会员头衔出错的bug 03.[修正]后台功能搜索的bug 04.[修正]后台网站信息设置中不能修改description的bug 05.[修改]把后台的一些地方,“重置”按钮改成“刷新”按钮 06.[修改]用户修改自己的密码的时候,自动更新cookies 07.[修正]上传图片最大宽度和最大高度不能设为0的bug 08.[修正]后台添加网站公告无法即时更新的bug3月16日以来的修正 01.[更新]版主进行帖子操作(删除回复、加精、移动帖子、取消精华等操作)完成后,页面不需要再跳转,进一步减少了带宽流量,增强了操作便捷性。 02.[更新]回复帖子,如果遇到“对不起,字数不够”或者其它不能提交的问题时,不需要再刷新后重写了,只需要继续写帖子,写完提交就行。 03.[修正]管理员不能设置帖子版内置顶的问题 04.[修正]后台不能修改用户注册协议的问题 05.[更新]在“站内信箱”里加了一个“全部设为已读”的功能。这样有时候遇到明明没有新信,却不断地提示“您有新的消息”的问题可以轻松解决了: 06.[修正]在后台对版块添加了版主之后,版主不能立即获得管理权的问题 07.[修正]在后台修改版块信息时,如果版块下面还有子版块就会出错的问题 08.[修正]在后台添加页头广告时莫名其妙地变成两侧对联广告的bugasprain

2010-03-24

jquery1.4中文手册,jquery1.4 API

jquery1.4中文手册,jquery1.4中文手册,

2010-02-07

Wscript.shell对象手册

Wscript.shell对象用于asp里web访问与桌面程序交互.创建方法: set objname=server.createobject("wscript.shell")

2010-02-04

jquery插件Chili-2.2改进版

Chili是一个优秀的用于代码语法高亮的jquery插件。官方下载地址是:http://code.google.com/p/jquery-chili-js/。 官方提供的下载包能够很好地对javascript、php、sql、css、html、C++、C#、Delphi、java、locus这十种开发语言进行语法高亮。鉴于asp/vbscript也是一种常用的开发语言,Chili不能正确地对它进行语法高亮实属憾事。为此我仔细修改了Chili,给它加入asp/vbscript语言高亮功能。另外对几种其它语言的高亮色进行了调整,使它显示得更加鲜艳多彩区分度高。 喜欢这个修改版或者对它有意见欢迎给我写信[email protected]

2010-02-03

serverxmlhttp中文手册

本手册是 Asprain's Asp&XML 产品的一部分。 本手册针对的是已有一定服务器端编程经验的读者。其目的是提供清晰完整ServerXmlhttp对象快速索引及进阶帮助。 手册提供了完整的基于msxml3.dll的server.createobject("Msxml2.ServerXMLHTTP.3")对象的属性(Properties)、方法(Methods )和事件(Event)的介绍。对象的部分属性和方法也可以用于基于msxml4.dll的server.createobject("Msxml2.ServerXMLHTTP.4")对象。 资料由本人亲自翻译。即将推出系列电子书,《XMLDOM中文手册》、《XSLT中文手册》、《XPath中文手册》,敬请期待。

2010-01-08

ADO 2.5手册.chm(简体中文版)

ADO 2.5手册简体中文版 现在网上流传的ADO 手册太老了,不知道是哪个ADO版本的手册,可能是ADO 2.0版的,居然连ADODB.record和ADODB.stream这两个对象都没有包括进去. 这个版本是ADO 2.5版的中文手册,内容已经包含了ADODB.record和ADODB.stream. 不过现在ADO最新版已经是2.8版了.但是ADO2.8版的手册没有中文版的.所以我放了个ADO 2.5版的中文手册上来.希望对大家有用.

2009-10-17

《ASP.NET.XML高级编程C#编程篇》源码

《ASP.NET.XML高级编程C#编程篇》的全部源码 wrox出版社出版

2009-09-26

《ASP与XML高级编程》源码

《ASP与XML高级编程》源码 wrox出版社出版, 文件列表 Chapter 03 ..........\contacts.xml ..........\invalid_contacts.xml ..........\update_booklist.xml ..........\Verifire.asp Chapter 05 ..........\basic.asp ..........\linkedlist.asp ..........\MakeMenu.asp ..........\menu.css ..........\menu.xml ..........\team.dtd ..........\team.xml ..........\typed.asp Chapter 06 ..........\admin ..........\.....\colorpicker.asp ..........\.....\settings.xml ..........\.....\settings_colors.asp ..........\.....\settings_original.xml ..........\colorpicker.asp ..........\contacts.xml ..........\contacts.xsl ..........\contacts2.xml ..........\contacts2_original.xml ..........\datacontents.xml ..........\displaycontacts.asp ..........\editsettings.asp ..........\getRSdata.asp ..........\global.asa script.txt ..........\images ..........\......\icon_reset.gif ..........\......\icon_save.gif ..........\include.xml ..........\john_doe.xml ..........\links.xml ..........\medicalhistory.asp ..........\modifications to global.asa.txt ..........\modifications to nav.asp.txt ..........\nav2html.asp ..........\navigate.asp ..........\navigation.asp ..........\properties.xml ..........\propertiesdemo.asp ..........\relatedweblinks.xml ..........\savecontacts.asp ..........\scriptlibrary.asp ..........\settings_colors.asp ..........\stylecontacts.asp ..........\Test.mdb ..........\testFSO.asp ..........\testlibrary.asp ..........\transformation.htm ..........\translation.htm ..........\xslexample.xsl Chapter 07 ..........\cascade.xml ..........\cascade1.css ..........\cascade2.css ..........\customsearch.zip ..........\dashdemo.svg ..........\toggle.htc ..........\training1.css ..........\training1.xml ..........\training2.css ..........\training2.xml Chapter 08 ..........\adv_style.asp ..........\basic_style.asp ..........\contacts.xml ..........\contacts_basic.xml ..........\sortedContacts.html ..........\stylecontacts.xsl ..........\stylecontacts_basic.xsl ..........\style_contacts_methods.xsl Chapter 09 ..........\contacts.xml ..........\contacts.xsl ..........\contacts_logical.xsl ..........\images ..........\......\filler.gif ..........\......\icon_link.gif ..........\......\icon_minus.gif ..........\......\icon_plus.gif ..........\links.xml ..........\links.xsl ..........\links_old.xsl ..........\menu.asp ..........\translation.htm ..........\xmltohtml.asp Chapter 10 ..........\default.asp ..........\dynstyle.xsl ..........\incoming.xml ..........\interpreter.asp ..........\interpreter.xml Chapter 11 ..........\ADOStreamExample.asp ..........\ContactsADO.xml ..........\ContactsADO.XSL

2009-09-26

Microsoft XMLDOM对象模型中文手册

Microsoft XMLDOM对象的方法/属性/事件的完整知识

2008-10-25

heidisql_.zip

HediSQL是一套简单而又强大的数据库管理软件(数据库客户端),被认为是最棒的MySQL数据库客户端,,而且还是免费软件。本中文手册是本人亲自翻译的。

2021-08-14

.NET 5.0 SDK x64

.NET 5.0 SDK x64,微软11月10日发布的新一代.NET框架。 .NET 5.0 SDK x64,微软11月10日发布的新一代.NET框架。 .NET 5.0 SDK x64,微软11月10日发布的新一代.NET框架。

2020-12-01

JsZip源代码及中文说明文档

jszip是一个用于创建、读取和编辑.zip文件的JavaScript库,且API的使用也很简单。官网地址:http://stuk.github.io/jszip/

2020-10-18

jqeury_3.2.1_api.rar

我在两年前翻译的jQuery 3.2.1参考手册。现在已经落时了吧?但是应该还算有上传价值的。现在才上传上来是因为我两年前上传不成功,而且找不到原因。现在经人提醒再上传一次。

2020-06-29

微软SQL Server示例数据库AdventureWorks2019.rar

微软SQL Server示例数据库AdventureWorks2019,下载自https://docs.microsoft.com/en-us/sql/samples/adventureworks-install-configure?view=sql-server-ver15&tabs=tsql

2020-06-29

二维码和条形码生成器,作者樊潇洁.rar

本人原创的二维码和条形码生成器,利用JavaScript生成二维码和条形码。调用方式简单。有SVG和Canvas两个版本。

2019-07-14

1-5章 PDF.rar

b01 Composition b02 XML和JSON b03 WebHooks和SignalIR b04 机器人和认识服务 b05 Windows应用程序的更多特性

2019-06-23

PHP 7从入门到精通扫描版

清华大学出版社出版,刘增杰、张工厂编著 ISBN 978-7-302-45625-4

2018-01-12

jQuery API 2.2简体中文手册

本人亲自制作的最新版的jQuery API手册,翻译得最全面最详细。 jQuery是一个轻快的、小巧的、功能丰富的JavaScript库。它用能够跨多种浏览器轻松使用的使用的API,使一些任务,比如说HTML文档遍历和操作、事件事处、动画,以及Ajax变得更简单。如果你是一个jQuery新手,我们建议你仔细阅读jQuery学习中心。 如果你正在更新到jQuery的一个新版本,请一定要阅读发布在我们的博客上的笔记。如果你以前用的是v1.9以前的版本,你还必须仔细阅读1.9 升级指南。

2016-02-14

IIS 7.5配置参考手册

英文版的IIS7.5 配置参考手册,官网下载的。 Internet Information Services (IIS) 7 and later use an XML-based configuration system for storing IIS settings which replaces the metabase that was used in IIS 6.0 and earlier. This new configuration system was introduced with ASP.NET and is based on a hierarchical system of management system that uses *.config files. The configuration files for IIS 7 and later are located in your %WinDir%\System32\Inetsrv\Config folder, and the primary configuration files are: ApplicationHost.config - This configuration file stores the settings for all your Web sites and applications. Administration.config - This configuration file stores the settings for IIS management. These settings include the list of management modules that are installed for the IIS Manager tool, as well as configuration settings for management modules. Redirection.config - IIS 7 and later support the management of several IIS servers from a single, centralized configuration file. This configuration file contains the settings that indicate the location where the centralized configuration files are stored. Note: Some settings can be delegated to Web.config files, which may override settings in the ApplicationHost.config file. In addition, settings that are not delegated cannot be added to Web.config files.

2015-05-16

jQwidgets 3.6.0

jQuery Widgets for PC, Mobile and Touch Devices jQuery Widgets for PC and Mobile What is jQWidgets? jQWidgets represents a framework based on jQuery for building web-based applications that run on PC, Touch and Mobile devices. jQWidgets includes more than 40 UI widgets. jQWidgets is not a modified version of the jQuery UI toolkit. All widgets are designed from ground-up and based on a powerful common core. The framework core provides fundamental capabilities like support for widget extensions and inheritance, widget settings, internal event handling and routing, property change notifications, device and browser compatibility detection and adjustments. Works across devices and browsers jQWidgets takes the JavaScript & HTML UI development to a new level. It is platform independent, cross-browser compatible and works on PC and mobile devices. Don抰 spend time testing on different devices and browsers. Use a reliable, CSS compliant JavaScript library based jQuery, HTML5 and CSS3.The product supports all major desktop and mobile web browsers - Internet Explorer 7.0+, Firefox 2.0+, Safari 3.0+, Opera 9.0+, Google Chrome, IE Mobile, Android, Opera Mini, Mobile Safari(IPhone, IPad). jQuery dependency and compatibility jQWidgets has a dependency on the jQuery library. jQWidgets is tested and compatible with all jQuery versions from jQuery 1.7.0 to jQuery 2.1.1. We are committed to supporting all new versions of jQuery and ensuring the highest level quality. At present, we highly recommend that you use jQuery 1.11.1. This version is stable, high quality, and works well with a large number of popular devices and browsers. It is ideal for enterprise web applications and Internet web sites where the visitors use a mix of mobile devices, PCs, new and older browsers. Important: jQuery team has decided that starting from jQuery version 1.9.0 the project will evolve in two parallel tracks. Versions 1.9.* will support older browsers while versions starting from 2.* will not. This means that if you are looking for the highest possible compatibility across the broadest set of devices and browsers, you should stick with versions earlier than 2.0.0 for some time. On the other hand, if you are using jQWidgets in a mobile application or building a solution where certain older browsers will not be required, feel free to use jQWidgets along with jQuery 2.0.0. It is important to emphasize that the pros and cons of maintaining compatibility with certain older browsers is always changing. If you want to make a good, well informed decision, we recommend you to check the recent browser usage statistics and analyze the browsers and devices used by your website抯 visitors. Optimized for Performance Small footprint, highly responsive, carefully optimized to deliver outstanding experience on a wide range of devices, operating systems and browsers. Theme Builder The Theme Builder is a powerful online tool that helps you to quickly create themes for the user interface of your application based on jQWidgets. Online Theme Builder Download and Installation Download jQWidgets Information about the distribution package The SDK files are located in the jqwidgets directory In general you need to use files from this directory only. Files list & description: Files required in all projects using the SDK jqxcore.js: Core jQWidgets framework Stylesheet files. Include at least one stylesheet Theme file and the images folder: styles/jqx.base.css: Stylesheet for the base Theme. The jqx.base.css file should be always included in your project. styles/jqx.arctic.css: Stylesheet for the Arctic Theme styles/jqx.web.css: Stylesheet for the Web Theme styles/jqx.bootstrap.css: Stylesheet for the Bootstrap Theme styles/jqx.classic.css: Stylesheet for the Classic Theme styles/jqx.darkblue.css: Stylesheet for the DarkBlue Theme styles/jqx.energyblue.css: Stylesheet for the EnergyBlue Theme styles/jqx.shinyblack.css: Stylesheet for the ShinyBlack Theme styles/jqx.office.css: Stylesheet for the Office Theme styles/jqx.metro.css: Stylesheet for the Metro Theme styles/jqx.metrodark.css: Stylesheet for the Metro Dark Theme styles/jqx.orange.css: Stylesheet for the Orange Theme styles/jqx.summer.css: Stylesheet for the Summer Theme styles/jqx.black.css: Stylesheet for the Black Theme styles/jqx.fresh.css: Stylesheet for the Fresh Theme styles/jqx.highcontrast.css: Stylesheet for the HighContrast Theme styles/jqx.blackberry.css: Stylesheet for the Blackberry Theme styles/jqx.android.css: Stylesheet for the Android Theme styles/jqx.mobile.css: Stylesheet for the Mobile Theme styles/jqx.windowsphone.css: Stylesheet for the Windows Phone Theme styles/jqx.ui-darkness.css: Stylesheet for the UI Darkness Theme styles/jqx.ui-lightness.css: Stylesheet for the UI Lightness Theme styles/jqx.ui-le-frog.css: Stylesheet for the UI Le Frog Theme styles/jqx.ui-overcast.css: Stylesheet for the UI Overcast Theme styles/jqx.ui-redmond.css: Stylesheet for the UI Redmond Theme styles/jqx.ui-smoothness.css: Stylesheet for the UI Smoothness Theme styles/jqx.ui-start.css: Stylesheet for the UI Start Theme styles/jqx.ui-sunny.css: Stylesheet for the UI Sunny Theme styles/images: contains images referenced in the stylesheet files Files for individual widgets. Include depending on project needs: jqx-all.js: All plug-ins and widgets jqxdata.js: Data Source plug-in jqxchart.js: Chart widget jqxgrid.js: Grid widget jqxgrid.sort.js: Grid Sort plug-in jqxgrid.filter.js: Grid Filter plug-in jqxgrid.grouping.js: Grid Grouping plug-in jqxgrid.selection.js: Grid Selection plug-in jqxgrid.columnsresize.js: Grid Columns Resize plug-in jqxgrid.columnsreorder.js: Grid Columns Reorder plug-in jqxgrid.pager.js: Grid Pager plug-in jqxgrid.edit.js: Grid Editing plug-in jqxgrid.storage.js: Grid Save/Load state plug-in jqxgrid.aggregates.js: Grid Aggregates plug-in jqxgauge.js: Radial and Linear Gauge widget jqxdatatable.js: DataTable widget jqxtreegrid.js: TreeGrid widget jqxrangeselector.js: RangeSelector widget jqxbuttons.js: Button, RepeatButton, SubmitButton & ToggleButton widgets jqxbulletchart.js: BulletChart widget jqxbuttongroup.js: Button group widget jqxswitchbutton.js: Switch Button widget jqxcalendar.js: Calendar widget jqxdatetimeinput.js: DateTimeInput widget jqxdockpanel.js: DockPanel widget jqxdropdownlist.js: DropDownList widget jqxcombobox.js: ComboBox widget jqxtabs.js: Tabs widget jqxtree.js: Tree widget jqxtreemap.js: TreeMap widget jqxcheckbox.js: CheckBox widget jqxradiobutton.js: RadioButton widget jqxexpander.js: Expander widget jqxlistbox.js: ListBox widget jqxmaskedinput.js: Masked TextBox widget jqxmenu.js: Menu widget jqxnavigationbar.js: NavigationBar widget jqxnotification.js: Notification widget jqxnumberinput.js: NumberInput TextBox widget jqxinput.js: TextBox widget jqxpanel.js: Panel widget jqxpopup.js: impements PopUp widget jqxprogressbar.js: ProgressBar widget jqxpasswordinput.js: Password input widget jqxscrollbar.js: ScrollBar widget jqxtooltip.js: ToolTip widget jqxrating.js: Rating widget jqxsplitter.js: Splitter widget jqxslider.js: Slider widget jqxwindow.js: Window widget jqxdocking.js: Docking widget jqxcolorpicker.js: Color Picker widget jqxdropdownbutton.js: DropDown Button widget jqxvalidator.js: Validation plug-in jqxdragdrop.js: DragDrop plug-in jqxknockout.js: Knockout integration plug-in jqxresponse.js: Response plug-in jqxangular.js: AngularJS integration plug-in

2015-01-03

精通jquery 2.0(2013年10月版)

英文版的 Chapter 1: Putting jQuery in Context 1 Chapter 2: HTML Primer 11 Chapter 3: CSS Primer 33 Chapter 4: JavaScript Primer 61 Chapter 5: jQuery Basics 93 Chapter 6: Managing the Element Selection 117 Chapter 7: Manipulating the DOM 145 Chapter 8: Manipulating Elements 177 Chapter 9: Working with Events 211 Chapter 10: Using jQuery Effects 235 Chapter 11: Refactoring the Example: Part I 267 Chapter 12: Using Data Templates 281 Chapter 13: Working with Forms 309 Chapter 14: Using Ajax: Part I 351 Chapter 15: Using Ajax: Part II 381 Chapter 16: Refactoring the Example: Part II 411 Contents at a GlanCe Chapter 17: Setting Up jQuery UI 449 Chapter 18: Using the Button, Progress Bar, and Slider Widgets 457 Chapter 19: Using the Autocomplete and Accordion Widgets 491 Chapter 20: Using the Tabs Widget 527 Chapter 21: Using the Datepicker Widget 555 Chapter 22: Using the Dialog and Spinner Widgets 587 Chapter 23: Using the Menu and Tooltip Widgets 621 Chapter 24: Using the Drag-and-Drop Interactions 653 Chapter 25: Using the Other Interactions 683 Chapter 26: Refactoring the Example: Part III 709 Chapter 27: Getting Started with jQuery Mobile 737 Chapter 28: Pages, Themes & Layouts 763 Chapter 29: The Dialog & Popup Widgets 797 Chapter 30: Buttons and Collapsible Blocks 823 Chapter 31: Using jQuery Mobile Forms 847 Chapter 32: Using Lists and Panels 879 Chapter 33: Refactoring the Example: Part IV 903 Chapter 34: Using the jQuery Utility Methods929 Chapter 35: The jQuery UI Effects & CSS Framework 945 Chapter 36: Using Deferred Objects 963

2014-09-10

jquery入门(2012年版)

英文版的 Chapter 1: JavaScript You Need to Know 1 Chapter 2: The Basics of jQuery 15 Chapter 3: Traversing the DOM 29 Chapter 4: DOM Manipulation with jQuery 43 Chapter 5: An Introduction to Events59 Chapter 6: More Events 71 Chapter 7: Animation 83 Chapter 8: Ajax with jQuery 103 Chapter 9: Writing a jQuery Plug-in 121 Chapter 10: More jQuery Plug-ins 139 Chapter 11: A jQuery Image Slider 157

2014-09-10

精通jQuery(2012年版)

英文原版的 Part 1: Getting Ready..............................................................................................1 Chapter 1: Putting jQuery in Context ......................................................................3 Chapter 2: HTML Primer........................................................................................13 Chapter 3: CSS Primer ..........................................................................................37 Chapter 4: JavaScript Primer ...............................................................................67 Part 2: Working with jQuery .................................................................................97 Chapter 5: jQuery Basics ......................................................................................99 Chapter 6: Managing the Element Selection.......................................................123 Chapter 7: Manipulating the DOM.......................................................................153 Chapter 8: Manipulating Elements......................................................................187 Chapter 9: Working with Events .........................................................................223 Chapter 10: Using jQuery Effects ........................................................................247 Chapter 11: Refactoring the Example: Part I ......................................................277 Part 3: Working with Data and Ajax....................................................................291 Chapter 12: Using Data Templates......................................................................293 Chapter 13: Working with Forms........................................................................327 Chapter 14: Using Ajax: Part I.............................................................................371 Chapter 15: Using Ajax: Part II............................................................................399 Chapter 16: Refactoring the Example: Part II .....................................................431 Part 4: Using jQuery UI........................................................................................467 Chapter 17: Setting Up jQuery UI ........................................................................469 Chapter 18: Using the Button, Progress Bar, and Slider Widgets......................477 Chapter 19: Using the Autocomplete and Accordion Widgets ............................513 Chapter 20: Using the Tabs Widget.....................................................................549 Chapter 21: Using the Datepicker Widget...........................................................587 Chapter 22: Using the Dialog Widget ..................................................................621 Chapter 23: Using the Drag & Drop Interactions.................................................641 Chapter 24: Using the Other Interactions ...........................................................673 Chapter 25: Refactoring the Example: Part III ....................................................699 Part 5: Using jQuery Mobile ................................................................................727 Chapter 26: Getting Started with jQuery Mobile .................................................729 Chapter 27: Pages and Navigation......................................................................761 Chapter 28: Dialogs, Themes, and Layouts.........................................................791 Chapter 29: Buttons and Collapsible Blocks.......................................................805 Chapter 30: Using jQuery Mobile Forms .............................................................827 Chapter 31: jQuery Mobile Lists..........................................................................853 Chapter 32: Refactoring the Mobile Example: Part IV.........................................875 Part 6: Advanced Features..................................................................................901 Chapter 33: Using the jQuery Utility Methods.....................................................903 Chapter 34: The jQuery UI Effects & CSS Framework .........................................921 Chapter 35: Using Deferred Objects....................................................................939

2014-09-10

《CSS3实战:开发与设计》源码

《CSS3实战:开发与设计》书中所包含的示例的全部源码。 本书英文版书名《Practical CSS3:Developand Design》,作者Chris Mills是一名杰出的Web技术专家、Web开放标准的布道者和Web教育变革者。他创立了Opera网络标准课程,是W3C网络教育社区组的联职主席。贯穿本书的一个核心就是Pratical,也就是我们说的“实战”。

2014-05-30

使用jquery核心

本人翻译的文档,原文在这里:http://learn.jquery.com/using-jquery-core/ 更多的http://learn.jquery.com中的文章将陆续翻译推出。

2014-01-10

简单漂亮的网页拾色器

一个简单漂亮的网页拾色器jquery插件。

2013-10-01

HTML5+Canvas基础教程 代码包

我整理的《HTML5+Canvas基础教程》的书中代码。代码都已经经过了我的测试运行。包括从第三章到第七章的全部代码【全书一共十章】。 书籍下载地址:http://download.csdn.net/detail/mazhaojuan/5147102

2013-09-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除