public static void Main()
string remoteUrl = string.Format("http://avantajgrup.com.tr/ilksan_sorgu.php?tck={0}&sifre={1}", "12345678901", "baba06di");
HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(remoteUrl);
WebResponse response = httpRequest.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string result = reader.ReadToEnd();
Console.WriteLine(result);