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.
So, how can register more then one control?
Thanks