I have an application in aspx and I use the bootstrap navbar to build the navigation menu, my question is how can I hide the url in the browser so that each time I change the page does not appear the route, I the menu is dynamically assembled from the BD, the code I have is the following:
<li class="dropdown">
<a href="<%=dsMenuPadres.Tables["MenuPadres"].Rows[i]["PATH"].ToString() %>" class="dropdown-toggle" data-toggle="dropdown" id="<%=dsMenuPadres.Tables["MenuPadres"].Rows[i]["NOMBRE"].ToString() %>" >
<%= dsMenuPadres.Tables["MenuPadres"].Rows[i]["NOMBRE"].ToString() %> <b class="caret"></b>
</a>
<% if (objControllerSeg.GetMenuHijos(dsMenuPadres.Tables["MenuPadres"].Rows[i]["ID_MODULO"].ToString(), int.Parse(Session["idRol"].ToString())))
{
dsMenuHijos = objControllerSeg.DsReturn;
if (dsMenuHijos.Tables["MenuHijos"].Rows.Count > 0)
{
%>
<ul class="dropdown-menu">
<%
for (int j = 0; j < dsMenuHijos.Tables["MenuHijos"].Rows.Count; j++)
{
%>
<li><a href="<%=dominio+dsMenuHijos.Tables["MenuHijos"].Rows[j]["PATH"].ToString() %>" id="<%=dsMenuHijos.Tables["MenuHijos"].Rows[j]["ID_MODULO"].ToString() %>"><%= dsMenuHijos.Tables["MenuHijos"].Rows[j]["NOMBRE"].ToString() %></a></li>
<% }%>
</ul>
<% } %>
<%}%>
</li>