I have a nested frameset doc.
looks like this
fraBot is another frameset that calls a left page(navigation) and a right page(content)Code:<FRAMESET rows="80,*" border=0 noresize> <FRAME NAME="fraTop" SRC="top.asp"scrolling=no marginheight=0 marginwidth=0> <frame name="fraBot" src="bot_frame.asp" scrolling=no marginheight=0 marginwidth=0> </FRAMESET>
the content page is an .asp page that looks for parameters in the querystring.
seems like it should work but it does not.
the code in my content page is very simple.
any suggestions?Code:if request.querystring("action")="go" then response.write "welcome" else response.write "your not welcome" end if
I can't use session variables or I would do it that way.




Reply With Quote