Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Stephen #1
data repeater question
Hi,
I have a quick question. I am displaying all the orders that are active. I
am making use of a datarepeater with checkboxes to display data and a submit
button to insert into the database.
suppose i want to make the orders inactive using the checkboxes and click on
the submit button should update the database.
How do I capture the event such that only those check boxes that have been
checked are updated and not others?
Thanks,
Stephen.
Stephen Guest
-
Question about Repeater
Hello, I have an ArrayCollection set to dataProvider of one Repeater When i change an item of this ArrayCollection the repeater load again ALL the... -
Repeater Data out of order?
I've got some calendar data coming across an HTTPService that looks like (I've removed some extra elements) ... <WEEK> <DAY PERIOD="1"... -
Using Radio button in a Data Repeater
I want to use a radio button in a data repeater which will allow me to select only one item. could somebody please help me. Thanks ... -
cfformgroup repeater data problems
The cfformgroup repeater stuffs all instances of a field into a single form scope variable when submitted. Please see the example in Livedocs:... -
Repeater: Can't Refer to Data In A Label
I have been banging my head against a wall trying to get a server-control to reference the text of a hidden <asp:label> so for testing I stripped... -
Charles Chen #2
data repeater question
When you render the checkbox in the template, give them
all the same name but a different HTML value attribute.
This value attribute should be the ID that you want to
update/delete/add (whatever).
When you post back, if the checkboxes all have the same
name, the values will be concatenated into a single comma
delimited value. You can get this from the Request by
using the name of the checkboxes and then splitting on the
comma and looping through each value.
~Chuck
that are active. I>-----Original Message-----
>Hi,
>
>I have a quick question. I am displaying all the ordersdisplay data and a submit>am making use of a datarepeater with checkboxes tocheckboxes and click on>button to insert into the database.
>
>suppose i want to make the orders inactive using theboxes that have been>the submit button should update the database.
>
>How do I capture the event such that only those check>checked are updated and not others?
>
>Thanks,
>Stephen.
>
>
>.
>Charles Chen Guest



Reply With Quote

