ASP.NET v2
I have MasterPage which includes the navigation bar for the site along the lines of:
<ul>
<li id="current"><a href="overview.aspx">Home</a></li>
<li><a href="users.aspx">Users</a></li>
<li><a href="courses.aspx">Courses</a></li>
</ul>
The css styles the list and id="current" is required to highlight the current page. What is the best way to manipulate the markup so the relevant list item has is assigned id="current" within each page.