Connect to URL using Post#
String url = "http://URL.asp?message=" + message.ToString();
using (WebClient client = new WebClient())
{
//execute request and read response as string to console
using (StreamReader reader = new StreamReader(client.OpenRead(url)))
{
string s = reader.ReadToEnd();
Console.WriteLine(s);
}
}
Back to c#
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-1) was last changed on 22-Dec-2008 08:17 by Hyve Support