Let me see if I can explain what I'm doing. I've got a header.asp for my banner, a navbar.asp for my navigation bar, and a template.asp which I created as a base for all my pages. The template.asp creates a large table on the page with the top row containing <!-- #include virtual=header.asp"-->, the left most column in the second row containing <!-- #include virtual=navbar.asp"-->, and the right hand column in the second row contains my different pages. I did this to avoid using frames.
In my navbar I have a tree type view which I created with a small jscript function and a few <DIV> tags. Each time you click on an item the tree expands showing you links to other pages. When you click a link to another page the navbar.asp and header.asp reload when the new page loads. Since everything is reloading, the item in the navbar that had the tree view expanded is now set back to it's original collapsed state.
My question is, is it possible to only refresh the the <TD></TD> that is holding all of my page contents and not refresh the navbar.asp or header.asp? Doesn't sound possible, but I had to ask. Or would a better approach be to somehow call my navbar.asp page again to refresh it's expanded view?
Hopefully my question makes sense... Sorry for the long post and thanks for the help.
-CFB
In my navbar I have a tree type view which I created with a small jscript function and a few <DIV> tags. Each time you click on an item the tree expands showing you links to other pages. When you click a link to another page the navbar.asp and header.asp reload when the new page loads. Since everything is reloading, the item in the navbar that had the tree view expanded is now set back to it's original collapsed state.
My question is, is it possible to only refresh the the <TD></TD> that is holding all of my page contents and not refresh the navbar.asp or header.asp? Doesn't sound possible, but I had to ask. Or would a better approach be to somehow call my navbar.asp page again to refresh it's expanded view?
Hopefully my question makes sense... Sorry for the long post and thanks for the help.
-CFB