hi there,
if i go to the address index.asp?cat=news
i can use the code:
and this will write out news in this example
but how can i do this if i am using frames i try this
but this does not take the cat information to the page i need it to??
How can i do this
thanks in advance
Jonathan D
if i go to the address index.asp?cat=news
i can use the code:
Code:
<% Response.Write(cat) %>
and this will write out news in this example
but how can i do this if i am using frames i try this
Code:
<frameset rows="160,*" frameborder="NO" border="0" framespacing="0">
<frame src="home/menu.asp" name="topFrame" scrolling="NO" noresize>
<%response.write("<frame src='" & request.querystring("cat") & "/main.asp' name='mainframe'>")%>
</frameset>
but this does not take the cat information to the page i need it to??
How can i do this
thanks in advance
Jonathan D