ตัวอย่างการใช้ FileUpload ในการอัพโหลดไฟล์ ของ ASP.NET เบื้องต้น
Tag : - - - -
Date :
25 Jul 2547 23:48:06
By :
the
View :
3521
Reply :
1
No. 1
Guest
Code (VB.NET)
Sub btnSubmit_Click(sender As Object, e As EventArgs)
If Me.fiUpload.HasFile Then
Me.fiUpload.SaveAs(Server.MapPath("Myfiles/"&fiUpload.FileName))
Me.lblText1.Text = "File Name: " & fiUpload.PostedFile.FileName
Me.lblText2.Text = "File Size: " & fiUpload.PostedFile.ContentLength
Me.lblText3.Text = "File Type: " & fiUpload.PostedFile.ContentType
End IF
End Sub