hello,
am doing an application (c#.net)wherein i need to add the Fileupload control one below the other on the
click of the Attach more files button; just as we have in the E-Mails. How can the control
get added to the form ? can ne1 help me out ?

cya
Rohan

To a file upload control to a PlaceHolder control

FileUpload fu1 = new FileUpload();
        fu1.ID = "fileUpload1";
        PlaceHolder1.Controls.Add(fu1);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.