I am developing a website, I have put it in a menu using nav with a couple of submenus, when I run the program it enters the first menu option correctly, but when I access a second option it gives me the following error:
Server error in the application '/'.
The resource is not found. in the href I give the following url "Maintenance / pagina.aspx", when it gives the error it adds another "Maintenance" leaves it in the following way "Maintenance / Maintenance / pagina.aspx", Maintenance is a folder within the project where several pages are hosted.
This is the code I use:
<ul class="nav">
<li><a href="Default.aspx">Inicio</a></li>
<li><a href="Acercade.aspx">Acerca de</a></li>
<li><a href="Contacto.aspx">Contacto</a></li>
<li><a>Movimientos</a>
<ul>
<li><a href="Movimientos/Pagina1.aspx">Proceso1</a></li>
<li><a href="Movimientos/Pagina2.aspx">Proceso2</a></li>
<li><a href="Movimientos/Pagina3.aspx">Proceso3</a></li>
</ul>
</li>
<li><a href="#">Mantenimientos</a>
<ul>
<li><a href="Mantenimientos/Proceso4.aspx">Proceso4</a></li>
<li><a href="Mantenimientos/Proceso5.aspx">Proceso5</a></li>
</ul>
</li>
</ul>