Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have added a button in datarepeater. If clicked once, it executes code and Button.text should change to Yes. Clicked again, it executes the opposite code and button.text should change to No. Codes are being executed (I am using flag variable) but Button.text is not changing.

How to change this text. I am simply trying Button.text="Yes" but probably I need to give some reference of the row no. too. How to do it?

Please advise. Thanks Furqan

share|improve this question

1 Answer

Please check this question: Handle Button Click in WinForm DataRepeater C# Power Pack

Also: the CurrentItem property has a property named Controls that allows you to access its child controls like this: CurrentItem.Controls["OKButton"]

share|improve this answer
Thanks, it gives item index but does not server my purpose. For example it gives 1 for all Close Buttons, in any rows – Furqan Sehgal Jan 16 '11 at 10:53
Could you show us your code? See also my addition to my answer. – Erno de Weerd Jan 16 '11 at 10:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.