js判断?
fileupload.FileContent.Length;
???
可以用flash或者SL来处理
文件上传
一. 在Form中一定要将encType设为 "multipart/form-data ":
<form id= "WebForm3 " method= "post " encType= "multipart/form-data " runat= "server " >
二. 判断是否有文件上传了:
当用户没有选择任何要上传的文件,即HtmlInputFile控件中的文本框为空时点击了上传按钮后,在服务端得到的File1.PostedFile
对象不是null,而是有对象的,所以不能用(File1.PostedFile ==
null)来判断是否上传了文件,用(File1.PostedFile.ContentLength != 0)来判断比较好http://www.chinadrtv.com/shouji/3Gshouji/4158.shtml