Sir..
I want to get the values from web pages using vb.net..
THIS WORKS!
[B]PHP[/B]
<input type="text" name="sample" [B]id[/B]="sample" value="" />
[B]VB.NET[/B]
TextBox.Text = WebBrowser1.Document.[B]GetElementById[/B]("sample").GetAttribute("value")
but.. what if there's no id.
[B]PHP[/B]
<input type="text" [B]name[/B]="sample" value="" />
[B]VB.NET[/B]
TextBox.Text = WebBrowser1.Document.[B]GetElementById[/B]("sample").GetAttribute("value") ???
it cant read the value since there's no id.
i search the web but there's no appropriate solution..