Code Message
100 Continue
101 Switching Protocols
102 Processing
200 OK
The request has succeeded.
201 Created
202 Accepted
203 Non-Authoritative Information
204 No Content
205 Reset Content
206 Partial Content
207 Multi-Status
300 Multiple Choices
301 Moved Permanently
The document has moved URL here
302 Found
The document has moved URL here
303 See Other
The answer to your request is located URL here
304 Not Modified
A cached copy will be used
305 Use Proxy
306 unused
307 Temporary Redirect
400 Bad Request
Your browser sent a request that this server could not understand
401 Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.
402 Payment Required
403 Forbidden
You don't have permission to access on this server
404 Not Found
T he requested URL was not found on this server
405 Method Not Allowed
The requested method GET is not allowed for the URL
406 Not Acceptable
407 Proxy Authentication Required
408 Request Time-out
Server timeout waiting for the HTTP request from the client
409 Conflict
410 Gone
The requested resource is no longer available on this server and there is no forwarding address. Please remove all references to this resource
411 Length Required
A request of the requested method GET requires a valid Content-length
412 Precondition Failed
The precondition on the request for the URL evaluated to false
413 Request Entity Too Large
The requested resource does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit
414 Request-URI Too Large
The requested URL's length exceeds the capacity limit for this server
415 Unsupported Media Type
The supplied request data is not in a format acceptable for processing by this resource.
416 Requested Range Not Satisfiable
417 Expectation Failed
418 unused
419 unused
420 unused
421 unused
422 Unprocessable Entity
423 Locked
424 Failed Dependency
425 No code
426 Upgrade Required
500 Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request
501 Method Not Implemented
GET to URL not supported
502 Bad Gateway
The proxy server received an invalid response from an upstream server
503 Service Temporarily Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
504 Gateway Time-out
505 HTTP Version Not Supported
506 Variant Also Negotiates
A variant for the requested resource URL is itself a negotiable resource. This indicates a configuration error.
507 Insufficient Storage
508 unused
509 unused
510 Not Extended
星期二, 五月 01, 2007
星期三, 四月 25, 2007
星期五, 一月 26, 2007
星期日, 十二月 03, 2006
Ajax 之经典应用
一,国内网站 1.163
http://mail.163.com http://www.126.com
2.新浪
新浪手机- 新浪评论
二,国外网站
24SevenOffice
64pola.pl: AJAX Multiplayer Chess Server
A9 Maps
A9.com
AgileGallery.com
AJAX Dictionary
AJAX Translator
ajaxWrite
Apple Store
Ask.com
Ask.com Maps
AskAlexia.com
Backbase
BaeBo
BaseCamp
BetFair.com
BlinkList
BloxPress.org
Box.net
BubbleShare.com
Colr.org
CommonTimes.org
Convea.com
Diggilicious.com
DutchPIPE.org
Edgeio.com
Eyespot.com: Editing video in your browser
Flickr.com
Form Assembly
Gap.com
Gmail
Google Calendar
Google Groups
Google Maps
Google Personalized Home
Google Reader
Google Suggest
GotAPI.com
GPlotter
Hive7.com
InstantDomainSearch.com
Jacuba.com
Jobby
Kayak.com
Kiko
KillSwitchCollective.com
Linkaroo
Meebo
MSN Virtual Earth
NearBinder.com
Netvibes.com
ObjectGraph Dictionary
Orkut.com
Panic Goods Apparel
Protopage
Ripped Tickets
SimplyHired.com
SoloModels.com
Spotback.com
Sproutliner
Start.com beta
Ta-daLists
TagWorld
TeamSlide.com
TicketSavvy.com
Top 10 Ajax Applications
Top 10 Ajax Applications (Part 2)
Webezz.net
WikiUpload.com
Yahoo! Instant Search
Yahoo! Tech
Zillow.com
http://mail.163.com http://www.126.com
2.新浪
新浪手机- 新浪评论
二,国外网站
24SevenOffice
64pola.pl: AJAX Multiplayer Chess Server
A9 Maps
A9.com
AgileGallery.com
AJAX Dictionary
AJAX Translator
ajaxWrite
Apple Store
Ask.com
Ask.com Maps
AskAlexia.com
Backbase
BaeBo
BaseCamp
BetFair.com
BlinkList
BloxPress.org
Box.net
BubbleShare.com
Colr.org
CommonTimes.org
Convea.com
Diggilicious.com
DutchPIPE.org
Edgeio.com
Eyespot.com: Editing video in your browser
Flickr.com
Form Assembly
Gap.com
Gmail
Google Calendar
Google Groups
Google Maps
Google Personalized Home
Google Reader
Google Suggest
GotAPI.com
GPlotter
Hive7.com
InstantDomainSearch.com
Jacuba.com
Jobby
Kayak.com
Kiko
KillSwitchCollective.com
Linkaroo
Meebo
MSN Virtual Earth
NearBinder.com
Netvibes.com
ObjectGraph Dictionary
Orkut.com
Panic Goods Apparel
Protopage
Ripped Tickets
SimplyHired.com
SoloModels.com
Spotback.com
Sproutliner
Start.com beta
Ta-daLists
TagWorld
TeamSlide.com
TicketSavvy.com
Top 10 Ajax Applications
Top 10 Ajax Applications (Part 2)
Webezz.net
WikiUpload.com
Yahoo! Instant Search
Yahoo! Tech
Zillow.com
星期五, 十二月 01, 2006
javascript中utf-8编码技巧 url编码问题
utf-8编码技巧 url编码问题
用JavaScript的escape()函数进行编码
escape() 方法:
采用ISO Latin字符集对指定的字符串进行编码。所有的空格符、标点符号、特殊字符以及其他非ASCII字符都将被转化成%xx格式的字符编码(xx等于该字符在字符集表里面的编码的16进制数字)。比如,空格符对应的编码是%20。
不会被此方法编码的字符: @ * / +
encodeURI() 方法:
把URI字符串采用UTF-8编码格式转化成escape格式的字符串。
不会被此方法编码的字符:! @ # $& * ( ) = : / ; ? + '
encodeURIComponent() 方法:
把URI字符串采用UTF-8编码格式转化成escape格式的字符串。与encodeURI()相比,这个方法将对更多的字符进行编码,比如 / 等字符。所以如果字符串里面包含了URI的几个部分的话,不能用这个方法来进行编码,否则 / 字符被编码之后URL将显示错误。
不会被此方法编码的字符:! * ( ) '
因此,对于中文字符串来说,如果不希望把字符串编码格式转化成UTF-8格式的(比如原页面和目标页面的charset是一致的时候),只需要使用escape。如果你的页面是GB2312或者其他的编码,而接受参数的页面是UTF-8编码的,就要采用encodeURI或者encodeURIComponent。
另外,encodeURI/encodeURIComponent是在javascript1.5之后引进的,escape则在javascript1.0版本就有。
用JavaScript的escape()函数进行编码
escape() 方法:
采用ISO Latin字符集对指定的字符串进行编码。所有的空格符、标点符号、特殊字符以及其他非ASCII字符都将被转化成%xx格式的字符编码(xx等于该字符在字符集表里面的编码的16进制数字)。比如,空格符对应的编码是%20。
不会被此方法编码的字符: @ * / +
encodeURI() 方法:
把URI字符串采用UTF-8编码格式转化成escape格式的字符串。
不会被此方法编码的字符:! @ # $& * ( ) = : / ; ? + '
encodeURIComponent() 方法:
把URI字符串采用UTF-8编码格式转化成escape格式的字符串。与encodeURI()相比,这个方法将对更多的字符进行编码,比如 / 等字符。所以如果字符串里面包含了URI的几个部分的话,不能用这个方法来进行编码,否则 / 字符被编码之后URL将显示错误。
不会被此方法编码的字符:! * ( ) '
因此,对于中文字符串来说,如果不希望把字符串编码格式转化成UTF-8格式的(比如原页面和目标页面的charset是一致的时候),只需要使用escape。如果你的页面是GB2312或者其他的编码,而接受参数的页面是UTF-8编码的,就要采用encodeURI或者encodeURIComponent。
另外,encodeURI/encodeURIComponent是在javascript1.5之后引进的,escape则在javascript1.0版本就有。
星期二, 十月 31, 2006
bookmarks
ajax demos
http://www.hotscripts.com/
30 Boxes it's your life
Ajax web book
ajax 得益网搜索
Google Web Toolkit - Build AJAX apps in the Java language
Googlesuggest
JavaScript Toolbox - Calendar Popup To Select Date
Kiko Calendar
Yahoo! Calendar - zhboliu
Writely
Zimbra offers Open Source email server software and shared calendar for Linux and the Mac
All Patterns - Yahoo! Design Pattern Library
Spongecell
Backbase - The #1 AJAX Development Framework for Rich Internet Applications
ajax tips
java - 开发 源码 常见问题
AJAX介绍及相关资料(转) - 从此不再流浪 - CSDNBlog
compdoc2cn: prototype.js开发笔记
prototype.js开发者手册 - coastcdl的专栏 - CSDNBlog
prototype.js轻量级WEB开发的首选ajax框架(一)
Ajaxian » Resources
prototype 1.5 - ck4918的专栏 - CSDNBlog
AJAX框架汇总 - bighuang的专栏 - CSDNBlog
AJAX介绍及相关资料(转) - 从此不再流浪 - CSDNBlog
DHTML 参考手册 - IFRAME 元素 iframe 对象
哪里摔倒就在哪里躺下。
A library of DHTML and AJAX scripts - DHTMLgoodies.com
SourceForge.net: Software Map
jscriptonline
开源公社 - AJAX开发组件
W3Schools Online Web Tutorials
[收藏]我收集的网页调色板-嘟嘟老窝
jsptaglibs.com
Blog
script.aculo.us - web 2.0 javascript
scriptjijin
JavaServer Faces (JSF) Tutorial Net.
Ajax4jsf Open Source Project for Adding AJAX to JSF Applications without JavaScript: Downloads Articles, Examples, Tutorials
Wikipedia
Wikipedia
valendee - CSDN Tag
java&jsp tips
JSP页面连接数据库大全(zz) - Crazy for Java!--narilee的专栏 - CSDNBlog
JS 216网页安全色调色板 DW 风格
浅析Java中Date类的应用
ajax bbs
Ajax中国论坛 - BETA
欢迎访问RIA联盟-RIA开发者的论坛[RIA联盟-RIA开发者的论坛]
日本語のサイト
Windows Mobile/W-ZERO3/Windows CE総合情報サイト- WindowsCE FAN
窓の杜
ダウンロード /
Javaの道(Java入門・リファレンス)
プログラミングと開発者のためのCodeZine:Google Web Toolkit:現実的な開発に即したAJAX(Google Web Toolkit, GWT, AJAX, Java)
とほほのJava入門
アルバイト(週末だけOK) /フロム・エー ナビ
常用的日本网站链接[CDMA手机论坛]
Google Calendar
Google クイックサーチ
中国国产软件—记录中国软件历程
databasseサイト
Oracle PL/SQL语言初级教程之异常处理
中国IT实验室--学习下载
辞書
Yahoo!翻訳 - テキスト翻訳
goo 辞書 英和辞典
e-Words
download
myBittorrent.com - BitTorrent Downloads
《应骡友要求发布日文版Windows专贴不断更新》(Windows)有序号,可激活[ISO]
Download and Share MP3, Movies and Games
L'Arc~en~Ciel
日本語の勉強
日语文法
星期一, 十月 30, 2006
订阅:
博文 (Atom)