Hi
Can we change position of Upload Multiple Files?
We can use the InserButtonId to change the Button for Upload Multiple Files... But it Creates problem When the Upload Control is in Gridview..
For e.g If we have Uploader control which has Different button (InserButtonID="somebutton"), First time it shows properly but on uploading files then for some of the GridRows it is showing 2 buttons, 1st buttons is "Upload Multiple Files" and 2nd which we have assigned using InsertButtonID="somebutton"
<CuteWebUI:UploadAttachments runat="server" ManualStartUpload="true" ID="CuteUploader"
InsertButtonID="BrowseButtonCup" ItemTextTemplate="" MaxFilesLimit="1"
MultipleFilesUpload="False" InsertButtonStyle-CssClass="btns"
NumFilesShowCancelAll="0" ShowTableHeader="False">
<ValidateOption MaxSizeKB="2097150" AllowedFileExtensions="jpeg,jpg,gif,png" />
</CuteWebUI:UploadAttachments>
<asp:Button runat="server" ID="BrowseButtonCup" Text="Browse" />
<asp:Button runat="server" ID="SubmitButtonCup" Text="Upload" CssClass="btns" />
These are 2 Rows having same Template but showing 2 different results
please suggest..