Hi,
It could be done by script:
- <p>
- Click the following button to upload. Email :
- <input id="emailbox" type="text" />
- </p>
- <script>
- function CuteWebUI_AjaxUploader_OnBrowse()
- {
- var emailbox=document.getElementById("emailbox");
- if(emailbox.value.length==0)
- {
- alert("please input your mail");
- emailbox.focus();
- return false;
- }
- }
- </script>
Regards,
Terry