I have a nested frameset doc.

looks like this
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>
fraBot is another frameset that calls a left page(navigation) and a right page(content)

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.

Code:
if request.querystring("action")="go" then
response.write "welcome"
else
response.write "your not welcome"
end if
any suggestions?

I can't use session variables or I would do it that way.