c# file upload code example
Example 1: c# fileupload example
String savePath = @"c:\temp\uploads\";
if (FileUpload1.HasFile) {
String fileName = FileUpload1.FileName;
savePath += fileName;
FileUpload1.SaveAs(savePath);
}
Example 2: c# webbrowser upload file
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim elements As System.Windows.Forms.HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("input")
For Each file As HtmlElement In elements
If file.GetAttribute("name") = "u" Then
SelectFile()
file.InvokeMember("Click")
End If
Next
End Sub
Public Async Sub SelectFile()
Await Task.Delay(2000)
SendKeys.Send("Put your file’s name here." + "{ENTER}")
End Sub