I put a repeater inside a UpdatePanel and all that are inside a page inheriting from masterpages.
MasterPage
Page
Updatepanel1
Repeater1
Button1 CommandName=<%# Eval("ID") %>
What happens is that when I click on the Button1, it shows me a error message telling me that I need to set the page attribute EnableEventValidation="false" .
Then, when I set it, the button1 doesn't call the "Repeater1_ItemCommand" method anymore, just the "Repeater1_RowCreated" and "Repeater1_DataBound" as it was the first time I am accessing the page.
My goal is to know which button I clicked inside the Repeater, getting the commandName from the button.
Anyone can help me fix the problem or have another way to get to my objective?
[]s
http://www.fabiocolombini.com