Hi!
Okay, here's the issue:
I have a nested repeater with this:
<td width="125px">< input type="text" name="M<%# DataBinder.Eval (Container.Data Item, "combos_id" ) %>" size="10" maxlength="10"> </td>
<td width="350px">< input type="text" name="C<%# DataBinder.Eval (Container.Data Item, "combos_id" ) %>" size="50" maxlength="100" ></td>
I need to search the page, find all the text boxes and get their values. However, I don't know anything about the ID other than it starts with a C or an M. I can't get a count from my initial data, so I query again to get the number of text boxes possible.
Even with a loop I cannot seem to actually "find" the objects. Any thoughts on any way to do this at all? foreach?
Okay, here's the issue:
I have a nested repeater with this:
<td width="125px">< input type="text" name="M<%# DataBinder.Eval (Container.Data Item, "combos_id" ) %>" size="10" maxlength="10"> </td>
<td width="350px">< input type="text" name="C<%# DataBinder.Eval (Container.Data Item, "combos_id" ) %>" size="50" maxlength="100" ></td>
I need to search the page, find all the text boxes and get their values. However, I don't know anything about the ID other than it starts with a C or an M. I can't get a count from my initial data, so I query again to get the number of text boxes possible.
Even with a loop I cannot seem to actually "find" the objects. Any thoughts on any way to do this at all? foreach?
Comment