Hello,
I am creating a customized upload control that easily allows me to upload / remove images web forms. The control should look like this:
However, currently, it looks like this:
This is the code I use:
<%-- Uploader --%>
<CuteWebUI:UploadPersistedFile runat="server" ID="imageUploader" UploadType="Auto" MultipleFilesUpload="false"
InsertButtonID="editButton" CancelButtonID="cancelButton" ProgressCtrlID="imageUploaderProgress"
OnFileUploaded="imageUploader_FileUploaded" OnFileChanged="imageUploader_FileChanged">
<ValidateOption AllowedFileExtensions="jpg,jpeg,gif,png" />
</CuteWebUI:UploadPersistedFile>
Why is the browse button still visible?
Thanks in advance!