Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How can you use Hidden frames to cache client data ?
.NET INTERVIEW QUESTIONS - How can you use Hidden frames to cache client data ?
✍: Guest
This technique is implemented by creating a Hidden frame in page which will contain your data to be cached.
<FRAMESET cols="100%,*,*">
<FRAMESET rows="100%">
<FRAME src="/data_of_frame1.html">
<FRAME src="/data_of_hidden_frame.html">
<FRAME src="/data_of_hidden_frame.html" frameborder="0" noresize
scrolling="yes">
</FRAMESET>
This is an example for hidden frames where the first frame “data_of_frame1.html” is visible and the remaining frames are hidden by giving whole col section to first frame. See allocation where 100 % is allocated to first frame and remaining frames thus remain hidden.
2009-07-14, 4761👍, 0💬
Popular Posts:
Can Multiple Cursors Being Opened at the Same Time? - Oracle DBA FAQ - Working with Cursors in PL/SQ...
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
How can we know the number of days between two given dates in PHP? Simple arithmetic: <?php $...
What is Shell scripting A shell script is a script written for the shell, or command line interprete...
What does a well-written Object Oriented program look like? A well-written object oriented program e...