Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4495👍, 0💬
Popular Posts:
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
What are secure and non-secure websites? A secure Website uses the Secure Socket Layer (SSL) protoco...
How is the MVC design pattern used in Struts framework? In the MVS design pattern, there 3 component...
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, ...