还可能发生其他错误所以应将FileUpload方法包含在一个错误捕获例程中如下所示
If FileUploadHasFile Then
Try
FileUploadSaveAs(C:\BegASPNET\WroxUnited\MatchImages\ &
FileUploadFileName)
Catch ex As Exception
LabelText = Failed because: <br/> & exMessage
End Try
LabelText = File uploaded to WroxUnited from: <br/> & FileUploadPostedFileFileName
Else
LabelText = Please select a file before clicking the Upload button
End If
在下面的试一试练习中将为用户实现上传图片的功能
()在VWD中使用Web Form模板创建一个名为GalleryUploadaspx的页面与您在前面创建的大多数页面一样使用sitemaster作为Master页面选择Visual Basic语言并将代码放置在一个单独的页面中
()在Design View中从工具条添加一个FileUpload控件和一个Label控件将该标签控件的ID设置为FileUploadRepoR并将text属性设置为空再添加一个button控件将其text属性设置为Upload
[] [] []