I have the online exam system that is using input with radio type my problem is I can't get selected input radio
<form runat="server"">
<asp:Repeater ID="rptCustomers" runat="server">
<ItemTemplate>
<form>
<div class="question">
<div class="container">
<p class="title">
</p>
<asp:Label CssClass="title" runat="server" Text='<%# Eval("Title") %>'/>
<ul>
<li>
<input type="radio" name="radio" value="1">
<label><%# Eval("r1") %></label>
</li>
<li>
<input type="radio" name="a" value="1">
<label><%# Eval("r2") %></label>
</li>
<li>
<input type="radio" name="a" value="1">
<label ><%# Eval("r3") %></label>
</li>
<li>
<input type="radio" name="a" value="1">
<label ><%# Eval("r4") %></label>
</li>
</ul>
</div>
</div>
</form>
</ItemTemplate>
when I add runat=server to inputs I can't get them again in code behind anyway to get selected radio input? I am using c#