Hi all,

Seems like this should be pretty basic, but it's not working like I am anticipating. Ok I'm developing a ASP.NET web app and I have some links like such:

Code:
 <!-- Begin Navigation -->
	        <div id="navigation">
		        <ul>
			        <li><a href="default.aspx">Home</a></li>
			        <li><a href="nationalhistory.aspx">National History</a></li>
			        <li><a href="chapterhistory.aspx">Chapter History</a></li>
			        <li><a href="interest.aspx">Membership Interest</a></li>
			        <li><a href="events.aspx">Events</a></li>
			        <li><a href="members/members.aspx">Members Only</a></li>
		        </ul>
	        </div>
	        <!-- End Navigation -->
Clicking the link navigates to that page. However when I click the last link (members only), it navigates just fine to a page in a folder on my site: "members/member.aspx". Problem is after going to this page it keeps the "members/" so when I click one of the other links (ie Home) it trys to go to: "members/default.aspx" instead of just "/default.aspx"

Is there something I'm doing wrong here? I'm using VS 2008 and ASP.NET 2.0.

Thanks,

Strick