This property is obsolete.

Code page used to encode the text data submitted by Image Uploader.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("CodePage", "65001");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setCodePage(value);
value = getImageUploader("ImageUploaderID").getCodePage();
Property Value

A non-negative integer value that represents a valid code page.

Default value is "65001".

Remarks

This property is obsolete. Use the Charset property instead. Keep in mind that the Charset property has different syntax than this one.

See Also

Reference
Charset Property