Click here to Skip to main content
15,888,243 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HTML
<div class="menu_nav">
        <ul>
          <li class="active"><a href="index.html">Home</a></li>
          <li><a href="support.html">Support</a></li>
          <li><a href="about.html">About Us</a></li>
          <li><a href="blog.html">Blog</a></li>
          <li><a href="contact.html">Contact Us</a></li>
        </ul>
      </div>



This is a part of index.html of a template..I want to replace home, support, about us etc with my aspx pages links...how to do it?
I have added this template in my master page....

Thanks a lot.....:)
Posted
Updated 24-Jan-14 17:50pm
v2

1 solution

Maybe like this?

HTML
<div class="menu_nav"/>
        <ul>
          <li class="active"><a href="index.html">Home</a></li>
          <li><a href="support.aspx">Support</a></li>
          <li><a href="about.aspx">About Us</a></li>
          <li><a href="blog.aspx">Blog</a></li>
          <li><a href="contact.aspx">Contact Us</a></li>
        </ul>
</div>
 
Share this answer
 
v4
Comments
planetz 24-Jan-14 23:57pm    
can you just explain 'mode'?
Mitchell J. 24-Jan-14 23:58pm    
mode?
planetz 25-Jan-14 0:01am    
you added mode="hold" in div....what does that mean?
Mitchell J. 25-Jan-14 0:04am    
Oops. There must have been some copy/paste error. Sorry about that.
planetz 25-Jan-14 0:53am    
should i change it in index.html as well?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900