G
Gorge Lucas
Hi guys,
Using asp.net with c#.
I have a default master page which has the following:
<ul>
<li id="About" class="m1"><a href="About.aspx">About
us</a></li>
<li id="Services" class="m2"><a
href="Services.aspx">Services</a></li>
<li id="Solutions" class="m3"><a
href="Solutions.aspx">Solutions</a></li>
<li id="Support" class="m4"><a
href="Support.aspx">Support</a></li>
<li id="Contact" class="m5"><a
href="Contact.aspx">Contact</a></li>
</ul>
Now, how can I insert something in to this peice from the child pages? Like,
if someone clicks on services, I need to modify the the services bit:
<li id="Services" class="m2"><a href="Services.aspx"
class="CurrentMenu">Services</a></li>
So it adds the class="CurrentMenu". This is so I can have effects on each
menu... I cannot find an easy way to do this.
Suggestions?
Thanks
Using asp.net with c#.
I have a default master page which has the following:
<ul>
<li id="About" class="m1"><a href="About.aspx">About
us</a></li>
<li id="Services" class="m2"><a
href="Services.aspx">Services</a></li>
<li id="Solutions" class="m3"><a
href="Solutions.aspx">Solutions</a></li>
<li id="Support" class="m4"><a
href="Support.aspx">Support</a></li>
<li id="Contact" class="m5"><a
href="Contact.aspx">Contact</a></li>
</ul>
Now, how can I insert something in to this peice from the child pages? Like,
if someone clicks on services, I need to modify the the services bit:
<li id="Services" class="m2"><a href="Services.aspx"
class="CurrentMenu">Services</a></li>
So it adds the class="CurrentMenu". This is so I can have effects on each
menu... I cannot find an easy way to do this.
Suggestions?
Thanks