Ciao a tutti, avrei un problema relativo all'accesso ad un frame in un controllo webBrowser, mi spiego meglio, carico la prima pagina di un sito dove c'è login e password, cosi composta
<html>
..<head>
..</head>
..<frameset framespacing="0" border="0" frameborder="no" rows="*,0,0">
....<frame scrolling="auto" noresize="" frameborder="0" src="home.php" name="mainframe">
......<html>
........<head>
........</head>
........<body>
........</body>
......</html>
....</frame>
..</frameset>
</html>
intercettando l'evento DocumentCompleted riesco ad accedere ai tag del body, e fin qui tutto ok.
Dopo il login mi arriva una seconda pagina che, in effetti, cambia solo nell'interno del frame ed è cosi composta
<html>
..<head>
..</head>
..<frameset framespacing="0" border="0" frameborder="no" rows="*,0,0">
....<frame scrolling="auto" noresize="" frameborder="0" src="home.php" name="mainframe">
......<html>
........<head>
........</head>
........<body onunload="" style="overflow: hidden;">
........</body>
......</html>
....</frame>
..</frameset>
</html>
sempre intercettando l'evento DocumentCompleted accedo al Dom della pagina, ma questa volta non riesco ad accedere ai Tag all'interno del Frame, sembra che ne sia bloccato l'accesso, non mi da neanche il relativo webBrowser1.Document.Window.Frames[0].Document, come se non esistesse, sto impazzendo, qualcuno ha un'idea???
PS
con JavaScript accedo regolarmente ad ogni tag delle pagine.
Grazie