「Expected ')'」というエラーが表示されます
ページは正常に読み込まれますが、ブラウザのフッターのステータスは「Done with errors」です
.aspx
<td align="left" valign="top" style="width: 18%;">
<div id="Div2" style="overflow:auto;height:120px;">
<asp:CheckBoxList ID="chklstCourse" DataTextField="CourseName" DataValueField="CourseName" runat="server"></asp:CheckBoxList>
</div>
</td>
<td align="left" valign="top" style="width: 18%;">
<div id="Div4" style="overflow:auto;height:120px;">
<asp:CheckBoxList ID="chklstCategory" DataTextField="Category" DataValueField="Category" runat="server"></asp:CheckBoxList>
</div>
</td>
<td align="left" valign="top" style="width: 18%;">
<div id="Div5" style="overflow:auto;height:120px;">
<asp:CheckBoxList ID="chklstSubCat" DataTextField="SubCategory" DataValueField="SubCategory" runat="server"></asp:CheckBoxList>
</div>
</td>
ソースを表示:
<tr>
<td><input id="ctl00_PageMainContent_filterPane_content_chklstCourse_0" type="checkbox" name="ctl00$PageMainContent$filterPane_content$chklstCourse$0" checked="checked" onclick="SelectAll('ctl00_PageMainContent_filterPane_content_chklstCourse',0);" /><label for="ctl00_PageMainContent_filterPane_content_chklstCourse_0">Select All</label></td>
</tr><tr>
<td><input id="ctl00_PageMainContent_filterPane_content_chklstCourse_1" type="checkbox" name="ctl00$PageMainContent$filterPane_content$chklstCourse$1" checked="checked" onclick="SelectAll('ctl00_PageMainContent_filterPane_content_chklstCourse',7 Habits of Highly Effective People);" /><label for="ctl00_PageMainContent_filterPane_content_chklstCourse_1">7 Habits of Highly Effective People</label></td>
</tr><tr>
<td><input id="ctl00_PageMainContent_filterPane_content_chklstCourse_2" type="checkbox" name="ctl00$PageMainContent$filterPane_content$chklstCourse$2" checked="checked" onclick="SelectAll('ctl00_PageMainContent_filterPane_content_chklstCourse',Advanced Networking for EBI/DVM);" /><label for="ctl00_PageMainContent_filterPane_content_chklstCourse_2">Advanced Networking for EBI/DVM</label></td>
</tr><tr>
チェックボックス リスト コントロールのビュー ソースで onclick イベントが自動的に追加されましたが、この背後に問題はありますか?
何か案は?前もって感謝します