Text of the error message which states that the server with the name, specified in the Action parameter cannot be found.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("MessageServerNotFoundText", "The server or proxy [Name] not found."); //...other params... iu.writeHtml(); </script>
getImageUploader("ImageUploaderID").setMessageServerNotFoundText(value); value = getImageUploader("ImageUploaderID").getMessageServerNotFoundText();
A string value which specifies a text of the error message stating that the server with the name, specified in the Action parameter cannot be found (e.g. the name of this server name is misspelled or the server is down). To disable this message, set it to empty string.
To be able to display additional information in this error message (the server name), a special keyword is used:
Default value is "The server or proxy [Name] not found.".
This property is necessary for localization of Image Uploader.
If you want to specify a multiline text use the "\n"
sequence to separate lines.