I\'m creating a fileupload control on a linKbutton click event. First time it\'s creating the controls, but if I press the link button second time, it\'s not creati
When you create controls dynamically with ASP.NET you need to recreate the control every time you post back, generally you recreate the control on Page_Load. That is most likely the cause of your problem.