Click here to Skip to main content
15,891,423 members
Home / Discussions / Web Development
   

Web Development

 
Generalan update... Pin
Anonymous19-Mar-03 0:32
Anonymous19-Mar-03 0:32 
QuestionHTC IFRAME BUG? Pin
cowtram18-Mar-03 16:58
cowtram18-Mar-03 16:58 
Generalneed help over this asp problem Pin
Pappo17-Mar-03 10:21
Pappo17-Mar-03 10:21 
GeneralRe: need help over this asp problem Pin
Thesisus17-Mar-03 10:29
Thesisus17-Mar-03 10:29 
GeneralRe: need help over this asp problem Pin
Anonymous21-Mar-03 9:50
Anonymous21-Mar-03 9:50 
QuestionWhere to begin? Pin
thorflea17-Mar-03 6:23
thorflea17-Mar-03 6:23 
Generalupload frames Pin
Brakanjan17-Mar-03 1:02
Brakanjan17-Mar-03 1:02 
GeneralRe: upload frames Pin
Jonavis20-Mar-03 21:49
Jonavis20-Mar-03 21:49 
ok dude..basically what you need to do is load the next frame from the previously loaded frame...

so lets say that you a have a frameset composed of 3 frames.. something like:
<br />
<frameset rows="100,*" border=0><br />
    <frame src="top.html" name="frame1" border=0 scrolling=no><br />
    <frameset cols="50,*" border=0><br />
        <frame src="blank.html" name=frame2 scrolling=auto><br />
        <frame src="blank.html" name=frame3 scrolling=auto><br />
    </frameset><br />
</frameset><br />


so you have frame1 through frame3. Notice that frame2 and frame3 have as a src a blank.html (I'll explain why in a bit).

since you want that frame2 loads after frame1 does... you will place the following code in top.html (the file in frame1)

<br />
<html><br />
<head><br />
<script language="JavaScript" type="text/JavaScript"><br />
<!--<br />
function MM_goToURL() { //v3.0<br />
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;<br />
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");<br />
}<br />
//--><br />
</script><br />
</head><br />
<br />
<body onLoad="MM_goToURL('top.frame2','left.html');return document.MM_returnValue"><br />


you will do the same thing in left.html (the second frame)...but changing only the target frame and the file to load:
<br />
<html><br />
<head><br />
<script language="JavaScript" type="text/JavaScript"><br />
<!--<br />
function MM_goToURL() { //v3.0<br />
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;<br />
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");<br />
}<br />
//--><br />
</script><br />
</head><br />
<br />
<body onLoad="MM_goToURL('top.frame3','index.html');return document.MM_returnValue"><br />


thats pretty much it. Keep in mind that every time you reload the site, the process will repeat itself.

hope it works.

luck,
Jon

x-zd Designs
GeneralFileSystemObject Problems Pin
Dion15-Mar-03 15:21
Dion15-Mar-03 15:21 
GeneralRe: FileSystemObject Problems Pin
Philip Patrick19-Mar-03 10:06
professionalPhilip Patrick19-Mar-03 10:06 
GeneralQuestion about ONSELECTSTART event of HTML body. Pin
George215-Mar-03 1:45
George215-Mar-03 1:45 
GeneralRe: Question about ONSELECTSTART event of HTML body. Pin
Paul Watson16-Mar-03 22:50
sitebuilderPaul Watson16-Mar-03 22:50 
GeneralRe: Question about ONSELECTSTART event of HTML body. Pin
George217-Mar-03 1:30
George217-Mar-03 1:30 
GeneralRe: Question about ONSELECTSTART event of HTML body. Pin
DFU2317-Mar-03 14:19
DFU2317-Mar-03 14:19 
GeneralDatabase connection Pin
TPN15-Mar-03 0:26
TPN15-Mar-03 0:26 
GeneralRe: Database connection Pin
Paul Watson16-Mar-03 22:34
sitebuilderPaul Watson16-Mar-03 22:34 
GeneralRe: Database connection Pin
TPN17-Mar-03 3:58
TPN17-Mar-03 3:58 
QuestionThe best way to manage user session ? Pin
TPN14-Mar-03 23:59
TPN14-Mar-03 23:59 
AnswerRe: The best way to manage user session ? Pin
Thesisus17-Mar-03 10:33
Thesisus17-Mar-03 10:33 
GeneralRe: The best way to manage user session ? Pin
TPN17-Mar-03 16:24
TPN17-Mar-03 16:24 
GeneralRe: The best way to manage user session ? Pin
Florin Ochiana27-Mar-03 13:07
Florin Ochiana27-Mar-03 13:07 
Questionhow browser remember's a link Pin
uzwa14-Mar-03 10:40
uzwa14-Mar-03 10:40 
AnswerRe: how browser remember's a link Pin
Torsten Mauz14-Mar-03 15:01
Torsten Mauz14-Mar-03 15:01 
GeneralEntertainment News Service Pin
perlmunger14-Mar-03 9:22
perlmunger14-Mar-03 9:22 
GeneralRichTextBox doubt Pin
Smitha Nishant14-Mar-03 5:09
protectorSmitha Nishant14-Mar-03 5:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.