Send data to a site

Ford-p

Active member
Joined
Mar 1, 2007
Messages
30
Programming Experience
Beginner
Hey,

I'm trying to make a function that will send a string to data to a txt file stored on my website. So far the only way I can think on doing it is by making a script on my site that takes a argument and writes that to a text file. So far I have written a ASP script that takes it in this format
VB.NET:
http://www.mysite.com/script.asp?query=My string here
This is fine but how do I navigate to it in my VB application? I can use "Process.Start" but then it opens a browser window. I could use a WebBrowser control that is hidden but I'm writing a console application and there must be a easier way.

Is there a completely different way to send data to a file stored on my web server? There doesn't seem to be any native FTP support in VB.NET but I'm just starting out.

Thanks,
Joe
 
Back
Top