Hi,
I wonder how can i show specific content on a particular page (instead of using the master & content page method)
<div class='menu'>
<li><a href=‘#’>Home</a></li>
<li><a href=‘#’>Order History</a></li>
<li><a href=‘#’>Logout</a></li>
</div>
ParticularPage.aspx
<body>
<!-- load menu content here-->
<div class='content'>
Hello World
</div>
</body>
I want to show member menu in all the member private pages (update profile, account statement and etc)
I have to modify 8 pages everytime if i wanna amend the member menu even just a single word.
I wonder any alternative to handle tis situation? like i can save the following to .txt and load it accordingly? TQ