1
Answer

Accessing page contents from browser (IE) cache

baburman

baburman

20y
1.9k
1
Hi guys, I want to access the currently downloaded pages from the browser (IE) cache with all its associated objects (images, css, flash objects, activex objects etc) so that i may be able to save them like in a database and will show them up off line to the user. How will it be accomplished using .NET. Coding examples will be highly appreciated. At the moment i just want to access the rendered page and its associated objects as i mentioned above the rest (database part etc.) i can do easily.
Answers (1)
0
Chintan Rathod

Chintan Rathod

NA 5.5k 1.9m 13y
<script src="../helloworld.js">
</script>

Now, whenever the page is loaded, the browser also puts the script
"helloworld.js" in the page. Note that you do not see the script in
your source code, you just see the include tag.

By including the above reference, your browser will now download
the code stored inside "helloworld.js" and run it as if it was physically
typed onto the page.