hello everone!
Is possible click element by id in asp.net ?
if is, can you give me an example?
thx in advance for feedback!
hello everone!
Is possible click element by id in asp.net ?
if is, can you give me an example?
thx in advance for feedback!
I don't understand what you want.
Sorry.
Slow as hell.
topic title says everything!
This pattern in common to all great programmers I know: they're not experts in something as much as experts in becoming experts in something.
The best programming advice I ever got was to spend my entire career becoming educable. And I suggest you do the same.
in vb i know how do to that.
here's how i do in vb
with this code and webbrowser
I click this page elementCode:Dim allelements As HtmlElementCollection = WebBrowser1.Document.All For Each webpageelement As HtmlElement In allelements If webpageelement.GetAttribute("id") = "count-down" Then webpageelement.InvokeMember("click") End If Next
As you can see, i try click element by id, in vb it's works fine, but in asp, i just not have idea how to do thatHTML Code:<div id="count-down"><h2><a href="redirect.php?code=5rX8fe">Click here to continue</a></h2></div>
thanks for feekbacks