MrProgrammer
Programmer
Hi everyone,
I want to learn something. I'm preparing the main page of my site with ASP. There is a vertical menu at left side of the page written in javascript. There is a 3-level menu tree. That means there are two at most sub menus of any main item at the main menu. When we click an item, I want the correcponding html file opened in the same window. But the menu must remain there. The html file must be shown in just right side of the menu. I'm thinking such a thing : At the clik events of each menu item I put links like "?menu=somestring". and below I tried to use
<%if Request.QueryString("menu"
="somestring" then%>
<!--#INCLUDE VIRTUAL="somelink"-->
<%end if%>
but it did't work. I thougt about using frames (putting the menu in a left frame an openin each html file in a content frame in the right). But this time the left frame must be wide enoug otherwise sub menu items doesnt appear. Can you suggest a solution please!!!!!!!
I want to learn something. I'm preparing the main page of my site with ASP. There is a vertical menu at left side of the page written in javascript. There is a 3-level menu tree. That means there are two at most sub menus of any main item at the main menu. When we click an item, I want the correcponding html file opened in the same window. But the menu must remain there. The html file must be shown in just right side of the menu. I'm thinking such a thing : At the clik events of each menu item I put links like "?menu=somestring". and below I tried to use
<%if Request.QueryString("menu"

<!--#INCLUDE VIRTUAL="somelink"-->
<%end if%>
but it did't work. I thougt about using frames (putting the menu in a left frame an openin each html file in a content frame in the right). But this time the left frame must be wide enoug otherwise sub menu items doesnt appear. Can you suggest a solution please!!!!!!!