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
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""></FRAMESET> <FRAME src="/data_of_hidden_frame.html""> <FRAME src="/data_of_hidden_frame.html"" frameborder="0" noresize scrolling="yes"> </FRAMESET>
Above is a sample of 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.
2007-10-23, 4590👍, 0💬
Popular Posts:
If we have multiple AFTER Triggers on table how can we define the sequence of the triggers ? If a ta...
How to create a thread in a program? You have two ways to do so. First, making your class "extends" ...
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the da...
What is the difference between "printf(...)" and "sprintf(...)"? sprintf(...) writes data to the cha...
Which bit wise operator is suitable for checking whether a particular bit is on or off? The bitwise ...