| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 426 人关注过本帖
标题:今日有位朋友问到我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
快速回复:今日有位朋友问到我VB上传问题
数据加载中...
 
   



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

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