ASP网页设计很好的上传!无组件!文件上传!包括其...
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。上传|无组件个中部分代码依据化境代码改编!!upload.htm
<html>
<head>
<metahttp-equiv="Content-Language"content="zh-cn">
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<metaname="GENERATOR"content="MicrosoftFrontPage4.0">
<metaname="ProgId"content="FrontPage.Editor.Document">
<title>NewPage1</title>
<linkrel="stylesheet"href="../public/css.css">
</head>
<scriptlanguage="javascript">
<!--
functioncheckform1()
{
if(form1.names.value=="")
{
alert("请输出称号!")
form1.names.focus()
returnfalse
}
if(form1.pic.value=="")
{
alert("请选择图片!")
form1.pic.focus()
returnfalse
}
returntrue
}
//-->
</script>
<body>
<tableborder="0"width="100%">
<formname="form1"enctype="multipart/form-data"action="upload.asp"method="post"onsubmit="returncheckform1()">
<tr>
<tdwidth="100%"colspan="2">
<palign="center"><b>上传示例</b></td>
</tr>
<tr>
<tdwidth="40%"align="right">称号:</td>
<tdwidth="60%"><inputtype="text"name="names"size="30"maxlength="20"class="input1"></td>
</tr>
<tr>
<tdwidth="40%"align="right">图样:</td>
<tdwidth="60%"><inputtype="file"name="pic"size="30"maxlength="20"class="input1"onblur="document.all.picview.src=document.all.pic.value"></td>
</tr>
<tr>
<tdwidth="40%"align="right"> </td>
<tdwidth="60%"><inputtype="submit"value="ok"class="inputbtn"></td>
</tr>
<tr>
<tdwidth="100%"align="center"colspan="2">
图像预览(选择图片后,点击页面恣意处便可举行预览)<br>
<imgid="picview"border="1">
</td>
</tr>
</form>
</table>
</body>
</html>
-----upload.asp
<!--#includefile="savefile.asp"-->
<%
SetobjStream=Server.CreateObject("ADODB.Stream")
objstream.mode=3
objStream.Type=1
objStream.Open
objstream.writeRequest.BinaryRead(Request.TotalBytes)
names=getvalue("names",true,"")
pic=getvalue("pic",false,"upimg/")
objstream.close
response.write("names:"+names)
response.write("文件已上传!("+pic+")")
%>
-----savefile.asp
<%
Dimstream1,stream2,istart,iend,filename
istart=1
vbEnter=Chr(13)&Chr(10)
functiongetvalue(fstr,foro,paths)fstr为吸收的称号,foro布尔false为文件上传,true为一般字段,path为上传文件寄存路径
ifforothen
getvalue=""
istart=instring(istart,fstr)
istart=istart+len(fstr)+5
iend=instring(istart,vbenter+"-------------------</p>对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了, 如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。 不能只是将它停留在纸上谈兵的程度上。 从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了 以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。 ASP的语言不仅仅只是命令格式差不多,而是包含在<%%>之内的命令完全就是VB语法。虽然ASP也是做为单独的一个技术来提出的,但他就是完全继承了VB所有的功能。 Server:这个表示的服务器,操作服务器的一些东西使用这个,如Server.Mappath转换服务器路径,Server.CreateObject实例化一个组件 ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。
页:
[1]