HOME > .NET Framework > Forum > The remote server returned an error: (403) Forbidden. คืออะไรครับตอบที.. คือผมกำลังทำการทดลอง การโหลดไฟล์จากอินเตอร์เน็ต โดยใช้ vb 2008
The remote server returned an error: (403) Forbidden. คืออะไรครับตอบที.. คือผมกำลังทำการทดลอง การโหลดไฟล์จากอินเตอร์เน็ต โดยใช้ vb 2008
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
My.Computer.Network.DownloadFile("http://pctc.byethost17.com/Singular.wma", "C:\Documents and Settings\DIGIT\Desktop\Singular.wma")
Process.Start("C:\Documents and Settings\DIGIT\Desktop\Singular.wma")
End Sub
End Class
พอรันแล้วคลิก Button1 พอสัก 3 วิมังครับ มันก็ขึ้น error
The remote server returned an error: (403) Forbidden.
ช่วยแนะนำทีครับ หัดใหม่ไม่รู้เรื่องอะไร
Tag : .NET, VB.NET
ประวัติการแก้ไข 2011-04-26 19:16:34
Date :
2011-04-26 18:52:28
By :
naya2007
View :
2595
Reply :
2
No. 1
Guest
เพลงเพราะดีครับ
Code (VB.NET)
Public Class Form1
Private WithEvents _webClient As New System.Net.WebClient()
Public Sub New()
InitializeComponent()
_webClient.Headers.Add(Net.HttpRequestHeader.UserAgent, "*/*")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ProgressBar1.Value = 0
Dim uri As New System.Uri("http://pctc.byethost17.com/Singular.wma")
_webClient.DownloadFileAsync(uri, "c:\xxx.wma")
End Sub
Private Sub _webClient_DownloadFileCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs) Handles _webClient.DownloadFileCompleted
MsgBox("โหลดเพลงเสร็จแล้วจ้า !!!")
End Sub
Private Sub _webClient_DownloadProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs) Handles _webClient.DownloadProgressChanged
ProgressBar1.Value = e.ProgressPercentage
End Sub
End Class