【实例简介】jquery上传控件 Uploadify 实例 .net,jsp,php三种版本
【实例截图】
【核心代码】
.
├── JQueryUploadDemo
│ ├── JQueryUploadDemo
│ │ ├── App_Data
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Default.aspx.designer.cs
│ │ ├── JQueryUploadDemo.csproj
│ │ ├── JQueryUploadDemo.csproj.user
│ │ ├── JS
│ │ │ └── jquery.uploadify-v2.1.0
│ │ │ ├── cancel.png
│ │ │ ├── check.php
│ │ │ ├── com
│ │ │ │ └── adobe
│ │ │ │ ├── air
│ │ │ │ │ └── logging
│ │ │ │ │ └── FileTarget.as
│ │ │ │ ├── crypto
│ │ │ │ │ ├── HMAC.as
│ │ │ │ │ ├── MD5.as
│ │ │ │ │ ├── MD5Stream.as
│ │ │ │ │ ├── SHA1.as
│ │ │ │ │ ├── SHA224.as
│ │ │ │ │ ├── SHA256.as
│ │ │ │ │ └── WSSEUsernameToken.as
│ │ │ │ ├── errors
│ │ │ │ │ └── IllegalStateError.as
│ │ │ │ ├── fileformats
│ │ │ │ │ └── vcard
│ │ │ │ │ ├── Address.as
│ │ │ │ │ ├── Email.as
│ │ │ │ │ ├── Phone.as
│ │ │ │ │ ├── VCard.as
│ │ │ │ │ └── VCardParser.as
│ │ │ │ ├── images
│ │ │ │ │ ├── BitString.as
│ │ │ │ │ ├── JPGEncoder.as
│ │ │ │ │ └── PNGEncoder.as
│ │ │ │ ├── net
│ │ │ │ │ ├── DynamicURLLoader.as
│ │ │ │ │ ├── IURIResolver.as
│ │ │ │ │ ├── MimeTypeMap.as
│ │ │ │ │ ├── URI.as
│ │ │ │ │ ├── URIEncodingBitmap.as
│ │ │ │ │ └── proxies
│ │ │ │ │ └── RFC2817Socket.as
│ │ │ │ ├── protocols
│ │ │ │ │ └── dict
│ │ │ │ │ ├── Database.as
│ │ │ │ │ ├── Definition.as
│ │ │ │ │ ├── Dict.as
│ │ │ │ │ ├── DictionaryServer.as
│ │ │ │ │ ├── MatchStrategy.as
│ │ │ │ │ ├── Response.as
│ │ │ │ │ ├── events
│ │ │ │ │ │ ├── ConnectedEvent.as
│ │ │ │ │ │ ├── DatabaseEvent.as
│ │ │ │ │ │ ├── DefinitionEvent.as
│ │ │ │ │ │ ├── DefinitionHeaderEvent.as
│ │ │ │ │ │ ├── DictionaryServerEvent.as
│ │ │ │ │ │ ├── DisconnectedEvent.as
│ │ │ │ │ │ ├── ErrorEvent.as
│ │ │ │ │ │ ├── MatchEvent.as
│ │ │ │ │ │ ├── MatchStrategiesEvent.as
│ │ │ │ │ │ └── NoMatchEvent.as
│ │ │ │ │ └── util
│ │ │ │ │ ├── CompleteResponseEvent.as
│ │ │ │ │ └── SocketHelper.as
│ │ │ │ ├── serialization
│ │ │ │ │ └── json
│ │ │ │ │ ├── JSON.as
│ │ │ │ │ ├── JSONDecoder.as
│ │ │ │ │ ├── JSONEncoder.as
│ │ │ │ │ ├── JSONParseError.as
│ │ │ │ │ ├── JSONToken.as
│ │ │ │ │ ├── JSONTokenType.as
│ │ │ │ │ └── JSONTokenizer.as
│ │ │ │ ├── utils
│ │ │ │ │ ├── ArrayUtil.as
│ │ │ │ │ ├── DateUtil.as
│ │ │ │ │ ├── DictionaryUtil.as
│ │ │ │ │ ├── IntUtil.as
│ │ │ │ │ ├── NumberFormatter.as
│ │ │ │ │ ├── StringUtil.as
│ │ │ │ │ └── XMLUtil.as
│ │ │ │ └── webapis
│ │ │ │ ├── ServiceBase.as
│ │ │ │ ├── URLLoaderBase.as
│ │ │ │ └── events
│ │ │ │ └── ServiceEvent.as
│ │ │ ├── example
│ │ │ │ ├── _notes
│ │ │ │ │ └── dwsync.xml
│ │ │ │ ├── cancel.png
│ │ │ │ ├── css
│ │ │ │ │ ├── _notes
│ │ │ │ │ │ └── dwsync.xml
│ │ │ │ │ ├── default.css
│ │ │ │ │ └── uploadify.css
│ │ │ │ ├── index.php
│ │ │ │ ├── scripts
│ │ │ │ │ ├── _notes
│ │ │ │ │ │ └── dwsync.xml
│ │ │ │ │ ├── check.php
│ │ │ │ │ ├── expressInstall.swf
│ │ │ │ │ ├── jquery-1.3.2.min.js
│ │ │ │ │ ├── jquery.uploadify.v2.1.0.min.js
│ │ │ │ │ ├── swfobject.js
│ │ │ │ │ ├── uploadify.php
│ │ │ │ │ └── uploadify.swf
│ │ │ │ └── uploads
│ │ │ ├── expressInstall.swf
│ │ │ ├── jquery-1.3.2.min.js
│ │ │ ├── jquery.uploadify.v2.1.0.js
│ │ │ ├── jquery.uploadify.v2.1.0.min.js
│ │ │ ├── swfobject.js
│ │ │ ├── uploadify.allglyphs.swf
│ │ │ ├── uploadify.css
│ │ │ ├── uploadify.fla
│ │ │ ├── uploadify.php
│ │ │ └── uploadify.swf
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── UploadFile
│ │ ├── UploadHandler.ashx
│ │ ├── UploadHandler.ashx.cs
│ │ ├── Web.config
│ │ ├── bin
│ │ │ ├── JQueryUploadDemo.dll
│ │ │ └── JQueryUploadDemo.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── JQueryUploadDemo.csproj.FileListAbsolute.txt
│ │ ├── JQueryUploadDemo.dll
│ │ ├── JQueryUploadDemo.pdb
│ │ ├── Refactor
│ │ └── TempPE
│ ├── JQueryUploadDemo.4.0.resharper
│ ├── JQueryUploadDemo.4.0.resharper.user
│ ├── JQueryUploadDemo.sln
│ ├── JQueryUploadDemo.suo
│ └── _ReSharper.JQueryUploadDemo
│ ├── 14674665-2fd4-41e8-9055-3d3df1f4f427.Metadata
│ ├── 3be0e4f7-2a89-4445-a79e-dc089412904f.Metadata
│ ├── 80acf725-d451-4067-822f-5e0d188abf2f.Metadata
│ ├── 80acf725-d451-4067-822f-5e0d188abf2f.XmlDocIndex
│ ├── CachesImage.bin
│ ├── ReflectionCache.xml
│ ├── TodoCache
│ │ └── 7
│ │ └── 5f83e501.dat
│ ├── WordIndex.New
│ │ └── 3
│ │ └── 46f1efb5.dat
│ ├── e5525a91-091d-459e-9953-9a26da5bbd09.Metadata
│ └── e6772287-f9cf-41c4-9839-11419ccc09ec.Metadata
├── JQueryUploadDemo net版本.rar
├── jquery.uploadify.js
├── jquery.uploadify.min.js
├── jquery上传控件 Uploadify 实例 .net,jsp,php三种版本_UploadifyDemo.rar
├── jquery上传插件uploadify在jsp中的使用.docx
├── uploadify-cancel.png
├── uploadify-check-exists.php
├── uploadify-v3.0.0PHP版本.zip
├── uploadify.css
├── uploadify.php
└── uploadify.swf
44 directories, 123 files
评论