我认为 jQuery-File-Upload插件界面很棒,功能齐全!我非常喜欢它!但我的服务器是经典ASP iis ...现在我想使用jQuery-File-Upload来上传文件(图像文件).请帮助我thx!
在我的服务器上我有3个文件,上传工作正常!现在我想添加像index.asp这样的html5文件.并使用jQuery-File-Upload basic-plus us.我需要进度条,验证,预览图像和客户端图像大小调整.也许太复杂了.
也许我们只是编辑"jQuery-File-Upload/index.html"
<form id="fileupload" action="http://myserver.com/html5/upload.asp" method="POST" enctype="multipart/form-data">
Run Code Online (Sandbox Code Playgroud)
我希望有人指导我.
请帮助我thx!抱歉我的英文...
3个文件/html5/index.asp
<!DOCTYPE html>
<html>
<head>
<meta charset="gbk" />
<title>fileReader?????????</title>
</head>
<body>
?????<br />
<form action="upload.asp" method="post" enctype="multipart/form-data">
<p>
???<input type="text" name="form1" value="form1_text" /><br />
???<input type="file" id="file" name="file1" multiple />
<input type="submit" value="??" />
</p>
<div name="result" id="result">
</div>
</form>
</body></html>
Run Code Online (Sandbox Code Playgroud)
2 /html5/index.asp
<!--#include file="UpLoad_Class.asp"-->
<%
dim upload
set upload = new AnUpLoad
upload.Exe = "*"
upload.MaxSize = 2 * 1024 * 1024 …Run Code Online (Sandbox Code Playgroud)