Gets or sets the "file type not support" message.
Example Code- <?php require_once "phpuploader/include_phpuploader.php" ?>
- <html>
- <body>
- <form id="form1" method="POST">
- <?php
- $uploader=new PhpUploader();
- $uploader->Name="myuploader";
- $uploader->FileTypeNotSupportMsg="This file extension is not allowed! File extensions allowed: '{0}'";
- $uploader->Render();
- ?>
- </form>
- </body>
- </html>