Ok, here is it...
<%...
RS=Conn.Execute("SELECT id,codigo,nombre,telefono1,telefono2,celular,direccion,ingreso,nacimiento FROM clientes WHERE nombre LIKE '" & TXTCriterio & "' AND id >=" & LReg & " ORDER BY id ASC LIMIT 11")
%>
...HTML Code...
<%
X=1
While RS.EOF=False AND X<=10
ClienteID=RS("id").Value%>
<asp:Menu runat="server" id="menu1"><Items><asp:MenuItem Text="New Item" Value="New Item"><asp:MenuItem Text="New Item" Value="New Item"></asp:MenuItem></asp:MenuItem></Items>
</asp:Menu>
<%
RS.Movenext
X=X+1
End While
%>
The code of the menu is not complete but is something like that. When IIS render the page to HTML all the menus have the same ID or Name.
DRH