<asp:templatecolumn>
<itemstyle width="40px" Height="26px"></itemstyle>
<headertemplate>전체</headertemplate>
<itemtemplate>
<asp:checkbox id="Checked" runat="server" checked="false" EnableViewState="False" />
</itemtemplate>
</asp:templatecolumn>
<asp:templatecolumn HeaderText="번호">
<itemstyle horizontalalign="Center" width="40px"></itemstyle>
<itemtemplate><%# rnum++ %></itemtemplate>
</asp:templatecolumn>
<asp:boundcolumn DataField="F_ITEM_CD" HeaderText="상품코드">
<itemstyle width="70px"></itemstyle>
</asp:boundcolumn>
데이터 그리드에 이런 식으로 컬럼 구성을 했습니다.
체크박스를 클릭하면 클릭한 열의 색깔이 바뀌게 처리하고싶은데..어떻게 해야하는지를 모르겠습니다.
고수님들 도와주세요~~