using System.Collections.Specialized;
using (WebClient client = new WebClient())
byte[] response = client.UploadValues("https://textita.com/text", new NameValueCollection() {
{ "phone", "9087938341" },
{ "message", "Sample SMS Text" },
string result = System.Text.Encoding.UTF8.GetString(response);