c# da bi txtden veri alıp sıra ile yazdırma ,txt den veri alıp webbrowserde bi yere yazdırtmak
HtmlElementCollection dizi=webBrowser1.Document.All;
foreach
(HtmlElement item in dizi)
{
if
(item.GetAttribute(
"id"
) ==
"yazilacak yerin id'si"
)
{
item.SetAttribute(
"value"
, textBox1.Text);
}
}
Hiç yorum yok:
Yorum Gönder