ASP Uploader Class Reference |
|
Uploader.InsertButtonID Property
It allows the developers specify a server control to use as the insert button of PHP File Uploader.
Example Code
- <% @ Language="VBScript" %>
-
- <html>
- <body>
- <form id="form1" method="POST">
- <%
- Dim uploader
- Set uploader=new AspUploader
- uploader.Name="myuploader"
- uploader.InsertButtonID="uploaderbutton"
- uploader.Render()
- ?>
- <img id="uploaderbutton" alt="Upload" src="sampleimages/uploaderbutton.gif" />
- </form>
- </body>
- </html>