标题:今日有位朋友问到我VB上传问题
只看楼主
boxou
Rank: 1
等 级:新手上路
帖 子:135
专家分:0
注 册:2006-4-28
 问题点数:0 回复次数:0 
今日有位朋友问到我VB上传问题

<INPUT id="File_1" type="file" name="File_1" runat="server">

Dim abc As String = File_1.PostedFile.FileName
Dim FPath1 As String = Server.MapPath("abc/" & abc) '保存路径和文件名

Dim Ftype1() As String = Split(FPath1, ".") '判断文件类型
If Len(Path.GetFileName(File_1.PostedFile.FileName)) <= 0 Then
ErrorList.Text = "请选择证书图片!"
p1.Visible = True
ElseIf LCase(Path.GetExtension(File_1.PostedFile.FileName)) <> ".jpg" And LCase(Path.GetExtension(File_1.PostedFile.FileName)) <> ".gif" Then
ErrorList.Text = "请上传JPG、GIF文件!"
p1.Visible = True
ElseIf File_1.PostedFile.ContentLength > 1048576 Then
ErrorList.Text = "上传的文件不能超过1M"
p1.Visible = True
Else
File_1.PostedFile.SaveAs(FPath1)
End IF

搜索更多相关主题的帖子: 朋友 
2006-06-05 22:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-69999-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.359855 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved