'How to get input value by attribute type name in asp.net

i have multiable textbox like each time user press on + button it generate new one by js

<asp:TextBox runat="server" name="skill"></asp:TextBox>
<asp:TextBox runat="server" name="skill"></asp:TextBox>
<asp:TextBox runat="server" name="skill"></asp:TextBox> ..etc

how can i get the value of all element that have the same name="skill" in array in c#



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source