This code
<asp:CheckBox ID="CheckBox_select" ClientIDMode="Static" type="checkbox" runat="server" />
generate this
<input id="CheckBox_select" type="checkbox" name="ctl00$ContentPlaceHolder1$GridView_reminderList$ctl03$CheckBox_select">
How can I get ctl00$ContentPlaceHolder1$GridView_reminderList$ctl03$CheckBox_select such that I could use it like
<label for="ctl00$ContentPlaceHolder1$GridView_reminderList$ctl03$CheckBox_select"></label>
The checkbox is in gridview so I can't access it that easily