I want to read an HTML page including the contents of iframes, in C#. I have used some techniques but the result is always access denied...
The page I want to read contains nested frames:
"Main page > iframe > iframe >iframe"
I want to read all of that but I can't read the iframe's content separately because that will redirect to another page.
<html>
<body>
<iframe>
<html>
<body>
<body>
</html>
</iframe>
<body>
</html>
I tried to use web client and web browser control methods, but they didn't work.