I'm using the following code to upload a text file to my web server:
It works perfectly apart from one the fact that during transmission, extended ASCII characters do not end up as intended:
Brögger becomes Brögger when I view the text file on the web server. I'm tearing my hair out with this one, can anyone help?
Code:
Dim server = "myftpserver"
Dim user = "myuser"
Dim pass = "mypass"
My.Computer.Network.UploadFile("file", "location", user, pass, True, 500)
It works perfectly apart from one the fact that during transmission, extended ASCII characters do not end up as intended:
Brögger becomes Brögger when I view the text file on the web server. I'm tearing my hair out with this one, can anyone help?