ASP.NET web control with the same ID
- by user370401
On an ASP.NET page, if the ASP.NET elements like <asp:Texbox ID="Textbox1"> appears in more than one place, are they the same Textbox object or are they different objects with the same name "Textbox1"? If the same, "why won't it cause any conflicts?"
E.G.
runat="server" Text='<%# Bind("Name") %'
runat="server" Text='<%# Bind("Name") %'
'