Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JanduBalm

    Accessing checkboxes in a repeater control

    Hi, If anyone is interested this is how I have resolved my problem: .aspx file <ItemTemplate> <tr> <td><%#Container.DataItem("ImageLink")%></td> <td><%#Container.DataItem("Name")%></td> <td><%#Container.DataItem("Description")%></td> <td class="HideText"><asp:checkbox...
  2. JanduBalm

    Accessing checkboxes in a repeater control

    Hi jmeckley, Many thanks for your guidance on this one As per your suggestion, I updated the code to the following: <ItemTemplate> <tr> <td><%#Container.DataItem("ImageLink")%></td> <td><%#Container.DataItem("Name")%></td> <td><%#Container.DataItem("Description")%></td>...
  3. JanduBalm

    Accessing checkboxes in a repeater control

    Hi, I have a repeater which displays lists of items. For each item, a checkbox is displayed and is named using the prefix of chk and then the product id is appended. The code is as follows: <ItemTemplate> <tr> <td><%#Container.DataItem("ImageLink")%></td>...

Part and Inventory Search

Back
Top