dear,
i have a page that have two frames; Top.asp and Down.asp
at the Down.asp page, there are 3 radiobuttons of option that show 3 set of different color to let user choose, when user choose one of the option, the top.asp background color and Down.asp background color will change at the same time. how to do that????
there are some coding from mine.
FRAME.asp
========
<HTML>
<frameset rows="80,*" border="0" framespacing="0">
<frame src="top.asp" name="topFrame" >
<frame src="down.asp" name="downFrame">
</frameset>
</HTML>
TOP.asp
======
<HTML>
<BODY>
Welcome.... blah blah blah...
</BODY>
</HTML>
DOWN.asp
========
<HTML>
<BODY>
Choose a set of color to change ur setting immediately:
<input type="radio" name="radiobutton" value="White;Green">
White & Green</p>
<p>
<input type="radio" name="radiobutton" value="Blue:Yellow">
Blue & Yellow</p>
<p>
<input type="radio" name="radiobutton" value="Gray;Silver">
Gray & Silver
</BODY>
</HTML>
From the down.asp, i'm not sure how the to pass the both color to both asp files... how to do that????
can asp or javascript do that????
i have a page that have two frames; Top.asp and Down.asp
at the Down.asp page, there are 3 radiobuttons of option that show 3 set of different color to let user choose, when user choose one of the option, the top.asp background color and Down.asp background color will change at the same time. how to do that????
there are some coding from mine.
FRAME.asp
========
<HTML>
<frameset rows="80,*" border="0" framespacing="0">
<frame src="top.asp" name="topFrame" >
<frame src="down.asp" name="downFrame">
</frameset>
</HTML>
TOP.asp
======
<HTML>
<BODY>
Welcome.... blah blah blah...
</BODY>
</HTML>
DOWN.asp
========
<HTML>
<BODY>
Choose a set of color to change ur setting immediately:
<input type="radio" name="radiobutton" value="White;Green">
White & Green</p>
<p>
<input type="radio" name="radiobutton" value="Blue:Yellow">
Blue & Yellow</p>
<p>
<input type="radio" name="radiobutton" value="Gray;Silver">
Gray & Silver
</BODY>
</HTML>
From the down.asp, i'm not sure how the to pass the both color to both asp files... how to do that????
can asp or javascript do that????
Comment