|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,架构|速率上传文件
1.上传页面
<formname="FORM"action="upLoad.asp"method="post">
<inputtype="submit"name="submit"value="OK">
<inputtype="file"name="file1"style="width:400"value="">
</form>
2.数据上传操做(upLoad.asp)页面
<%language=VBScript%>
<%
callupLoad
**********************************************************************
PrivateFunctiongetFileName(ByValstrFile)
本函数用来获得上传文件称号
IfstrFile""Then
getFileName=mid(strFile,InStrRev(strFile,"")+1)
Else
getFileName=""
EndIf
Endfunction
************************************************************************
privatesubupLoad()
onerrorresumenext
用来实行上传文件的代码
strFileName=Request.Form("file1")
SetobjStream=Server.CreateObject("ADODB.Stream")
objStream.Type=1adTypeBinary
objStream.Open
objStream.LoadFromFilestrFileName
保留文件到服务器
objStream.SaveToFile"D:download"&getFileName(strFileName),2
objStream.Close
iferr=0then
response.write"上传乐成!"
else
response.write"上传失利!"
endif
setobjStream=nothing
EndSub
**************************************************************************
%>
</p>优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件 |
|