ASP Uploader Class Reference |
|
Uploader.NumFilesShowCancelAll Property
Specifies the number of files when the CancelAll button appears.
Example Code
- <% @ Language="VBScript" %>
-
- <html>
- <body>
- <form id="form1" method="POST">
- <%
- Dim uploader
- Set uploader=new AspUploader
- uploader.Name="myuploader"
- uploader.NumFilesShowCancelAll=2
- uploader.Render()
- %>
- </form>
- </body>
- </html>