29-07-20, 11:19 AM
ربما هذا يجيب عن سؤالك :
المصدر
https://stackoverflow.com/questions/1694...et-c-sharp
كود :
string webpageData;
using (System.Net.WebClient webClient = new System.Net.WebClient())
webpageData = webClient.DownloadString("http://vb4arb.com/vb/showthread.php?tid=35881");
if (webpageData.Contains("malek369"))
{
MessageBox.Show("تم ايجاد الكلمة");
}
else
{
MessageBox.Show("لم يتم ايجاد الكلمة");
}المصدر
https://stackoverflow.com/questions/1694...et-c-sharp

