Hi everybody!
I'm working on a site, written in CSS and ASP.
Issue: I have this CSS-page. In this page I have a menu. Here's the code:
<div id="left">
<div id="sub_left">
<div class="navcontainer">
<ul class="navlist">
<li><a href="#">Test1</a></li>
<li><a href="#">Test2</a></li>
<li><a href="#">Test3</a></li>
<li><a href="#">Test10</a></li>
<li><a href="#">Test20</a></li>
<li><a href="Test30.asp" target="_top">Test30</a></li>
</ul>
</div>
When I click on Test1, I want to show the content of a html or an asp-page in a div called main_content (<div id="main_content">). When I click on Test2, I want to show some other text from another html-page in the same div, but the content from Test1 should be removed.
Can this be done by using "include file"?
Please let me know if I'm indistinct.
/Paul
I'm working on a site, written in CSS and ASP.
Issue: I have this CSS-page. In this page I have a menu. Here's the code:
<div id="left">
<div id="sub_left">
<div class="navcontainer">
<ul class="navlist">
<li><a href="#">Test1</a></li>
<li><a href="#">Test2</a></li>
<li><a href="#">Test3</a></li>
<li><a href="#">Test10</a></li>
<li><a href="#">Test20</a></li>
<li><a href="Test30.asp" target="_top">Test30</a></li>
</ul>
</div>
When I click on Test1, I want to show the content of a html or an asp-page in a div called main_content (<div id="main_content">). When I click on Test2, I want to show some other text from another html-page in the same div, but the content from Test1 should be removed.
Can this be done by using "include file"?
Please let me know if I'm indistinct.
/Paul