Having a problem with sending a file via HTTP post in vb.net. I am trying to mimic the following HTML so the vb.net does the same thing.
You could use the
E.g:
In ASPX: In Code Behind: if(flUpload.HasFile) { string filepath = flUpload.PostedFile.FileName; flUpload.PostedFile.SaveAs(Server.MapPath(".\\") + file) }