Posts by Thiago • 11 points
2 posts
-
0
votes2
answers244
viewsA: Javascript injection in Internet Explorer, returns null
Test this section and see if it generates any exception try{ IHTMLDocument2 doc = (IHTMLDocument2)IE.Document; if (doc != null){ IHTMLWindow2 parentWindow = doc.parentWindow; if (parentWindow !=…
-
-1
votes2
answers256
viewsA: C#: Return value of a href
If I understand what you need, you can do it this way: <htmL> <body> A url completa da página atual é: <script> document.write(document.URL); </script> </body>…