Кто-нибудь знает, что здесь происходит? У меня есть следующий код в моем файле aspx:
<tr>
<th class="graytext r">Add Reps to Team:</th>
<td>
<asp:GridView ID="grid" runat="server" AutoGenerateColumns="False" DataKeyNames="EmployeeID" DataSourceID="dsEmployees" EnableViewState="false" GridLines="None" CssClass="clGridDirectory">
<Columns>
<asp:TemplateField >
<ItemTemplate>
<asp:CheckBox runat="server" ID="employee_name" Text='<%# Eval("fullname") %>'/>
<asp:HiddenField runat="server" ID="employeeidToRep" Value='<%# Eval("employeeid") %>'/>
<asp:TextBox runat="server" ID="repID" Text='<%# Eval("rep_id") %>' CssClass="cl_required_for_sale" data-messages="{required:'required'}" />
<asp:RequiredFieldValidator ID="reqvrepID" runat="server" ControlToValidate="repID" Display="Dynamic" EnableClientScript="true" ErrorMessage="required" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="dsEmployees" runat="server" ConnectionString="<%$ ConnectionStrings:TestConnectionString %>" SelectCommand="app_staff_without_team_select" SelectCommandType="StoredProcedure">
</asp:SqlDataSource>
</td>
</tr>
Я пытаюсь получить предупреждение, когда пользователь нажал на флажок, используя следующий код:
<script type="text/javascript">
$('#<%= employee_name.ClientID %>').change(function () {
alert('bingo')
});
</script>
Но как-то появляется сообщение об ошибке при попытке запустить страницу:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0103: The name 'employee_name' does not exist in the current context
Source Error:
Line 121: <script type="text/javascript">
Line 122: $('#<%= employee_name.ClientID %>').click(function () {
Кто-нибудь знает, что не так с моим кодом jQuery? Как я мог получить только идентификатор флажка для jQuery?