K
kravikiran
Hi
I have 2 frames in a main frameset. frame1 (top) ,frame2 (bottom)
In top frame (frame1) i have my text box where i enter my search
string. Also I am calling onLoad in
<body onLoad="loadXML()"> which loads a 8MB XML data in a DOM object
like,
<html>
<head>
<script type="text/javascript">
function loadXML()
{
//load the xml data in a DOM object.
}
</script>
</head>
<body onLoad="loadXML()">
</body>
</html>
Now based on the data and the string available in frame1, i will
display my search results in bottom frame (frame2).
What I want is, once I load the whole frameset for the first time,
even when I "refresh/reload" the main frameset html page, the frame1
should not be refreshed or atleast the xml data should not be loaded
again (as the size of the xml data is 8MB and will never change). So
how to achieve this?
Thanks
Ravikiran
I have 2 frames in a main frameset. frame1 (top) ,frame2 (bottom)
In top frame (frame1) i have my text box where i enter my search
string. Also I am calling onLoad in
<body onLoad="loadXML()"> which loads a 8MB XML data in a DOM object
like,
<html>
<head>
<script type="text/javascript">
function loadXML()
{
//load the xml data in a DOM object.
}
</script>
</head>
<body onLoad="loadXML()">
</body>
</html>
Now based on the data and the string available in frame1, i will
display my search results in bottom frame (frame2).
What I want is, once I load the whole frameset for the first time,
even when I "refresh/reload" the main frameset html page, the frame1
should not be refreshed or atleast the xml data should not be loaded
again (as the size of the xml data is 8MB and will never change). So
how to achieve this?
Thanks
Ravikiran