B
Bob
In Jscript, fromCharCode returns a string from a number of
Unicode character values.
In the following example, test contains the string "plain":
var test = String.fromCharCode(112, 108, 97, 105, 110);
Does anyone know the equivalent of this method in J#?
To understand the JScrip example, save the following as a
html file and open that file
<html>
<head>
<script language="jscript">
function test() {
alert(String.fromCharCode(112, 108, 97, 105, 110));
}
</script>
<body onload="test()">
<p id=writebefore>
</P>
</body>
</html>
Thanks,
Bob
Unicode character values.
In the following example, test contains the string "plain":
var test = String.fromCharCode(112, 108, 97, 105, 110);
Does anyone know the equivalent of this method in J#?
To understand the JScrip example, save the following as a
html file and open that file
<html>
<head>
<script language="jscript">
function test() {
alert(String.fromCharCode(112, 108, 97, 105, 110));
}
</script>
<body onload="test()">
<p id=writebefore>
</P>
</body>
</html>
Thanks,
Bob