Hi,
I've created a web user control that have a FileUpload and a Button, and did put this control inside an UpdatePanel then register it like :
ScriptManager.RegisterPostBackControl(Document1)
and it worked OK. But the problem is that if I put another instance of my control and register them like:
ScriptManager.RegisterPostBackControl(Document1)
ScriptManager.RegisterPostBackControl(Document2)
The second instance (Document2) works fine but Not the first one (Document1) and for that I'm assuming that only the second Document did get registered.
I've tried this solution in the folowing link and it didn't work:
http://disturbedbuddha.wordpress.com/2007/12/12/handling-multiple-asynchronous-postbacks/
So, how can register more then one control?
Thanks