<input name="chkFile" value="2062223616_7147073260_1440589192619132.WMA" type="checkbox">
from this code I want only the value data
Example:
2062223616_7147073260_1440589192619132.WMA
below my code not working so please help me.
My code
HtmlElementCollection bColl = webBrowser2.Document.GetElementsByTagName("input");
foreach (HtmlElement bEl in bColl)
{
if (bEl.GetAttribute("name").Equals("chkFile"))
showaudiourl.Text = bEl.OuterHtml.Split('"')[3];
}