Aurigma Image Uploader 6.5 Dual
ImageUploader.AuthenticationType Property
Authentication type configured on the server.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("AuthenticationType", "None"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setAuthenticationType(value);
value = getImageUploader("ImageUploaderID").getAuthenticationType();Property Value
A member of the following enumeration that specifies an authentication type:
| String value | Integer value | Description |
|---|---|---|
| None | 0 | No authentication. |
| Ntlm | 1 | NTLM authentication. |
| Basic | 2 | Basic authentication. |
Default value is "None".
Remarks
This property is used to force Image Uploader to display a corresponding authentication dialog in the case when basic or ntlm authentication is set on the server.