|
|
|
|
A great way to persist data (on the client)between pages when working within a frameset.
This is a good, more stable substitute for session cookies.
Trying to pass querystring values or form values back and forth can get messy and if your string gets too long some browsers will choke.
Cookies can be an unstable solution because they can't get too long either and some browsers will mysteriously lose them.
This is a simple, dynamic solution that does the trick in version 4 IE and Netscape browsers.
If this is of use to you, send me a quick note and let me know! shawn_james@hotmail.com
|
| |
Terms of Agreement:
By using this article, you agree to the following terms...
- You may use
this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
- You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
- You may link to this article from another website, but ONLY if it is not wrapped in a frame.
- You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
|
<html>
<head>
<SCRIPT>
var strBuffer = new Array();
function GetValue(strName) {
return strBuffer[strName.toLowerCase()];
}
function SetValue(strName, strValue) {
strBuffer[strName.toLowerCase()] = strValue;
}
</SCRIPT>
</head>
<frameset rows="*,39" onload="LoadVars();" BORDER=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 NORESIZE scrolling=auto>
<frame src="somepage.asp" name="main" NORESIZE scrolling=auto>
<frame src="someotherpage.asp" name="buttons" NORESIZE scrolling=no>
</frameset>
</html>
usage examples:
parent.SetValue("Value1","ThisIsValue1");
parent.SetValue("value1","ThisIsChangedValue1");(note, case insensitive)
parent.SetValue("Value2","ThisIsValue2");
strVal = parent.GetValue("Value1");
|
|
Other 1 submission(s) by this author
|
|
Report Bad Submission
|
Your Vote
|
| |
Other User Comments
|
9/22/2004 10:05:19 AM: Rde
This is a good solution Shawn.
I assume LoadVars() sets some variables ready for GetValue() calls.
Happy coding, Rd. (If this comment was disrespectful, please report it.)
|
6/23/2011 1:48:27 AM: Natto-San
Yeah!,It's cool.But,Plz do any more. How can i transfer large of data(client) to asp server..page..
(If this comment was disrespectful, please report it.)
|
Add Your Feedback
Your feedback will be posted below and an email sent to
the author. Please remember that the author was kind enough to
share this with you, so any criticisms must be stated politely, or they
will be deleted. (For feedback not related to this particular article, please
click here instead.)
To post feedback, first please login.
|