T
TR
Given the following frameset named MyFrameSet.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head><TITLE>LaunchFrame</TITLE>
<FRAMESET ROWS="88%,12%">
<FRAME id='frame1' name='frame1' SRC="placeholder.htm" >
<FRAME id='frame2' name='frame2' SRC="Game.aspx">
</FRAMESET>
</head>
</html>
and given the fact that another page, Temp.htm, opens MyFrameSet.htm in
this way, setting a query string value:
<a href='MyFrameSet.htm?player=999'>Open the frameset</a>
Is it possible for *server-side* code in Game.aspx (loaded into frame2)
to obtain the query-string value for "player" (i.e. 999)?
Thanks for the help!
TR
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head><TITLE>LaunchFrame</TITLE>
<FRAMESET ROWS="88%,12%">
<FRAME id='frame1' name='frame1' SRC="placeholder.htm" >
<FRAME id='frame2' name='frame2' SRC="Game.aspx">
</FRAMESET>
</head>
</html>
and given the fact that another page, Temp.htm, opens MyFrameSet.htm in
this way, setting a query string value:
<a href='MyFrameSet.htm?player=999'>Open the frameset</a>
Is it possible for *server-side* code in Game.aspx (loaded into frame2)
to obtain the query-string value for "player" (i.e. 999)?
Thanks for the help!
TR