Hello,
I have a javascript which is able to crypt an e-mail address on my .jsp side like :
crypted += String.fromCharCode (r.charCodeAt (i) + 1);
I would like to take out this javascript from my .jsp and implement in .java the same functionality.
So far I have done already this like:
crypttext += (myaddr.charAt(i))+1;
My question is, how can I have the same result in .java as I have in the .javascript?
Thank you in advance!
I have a javascript which is able to crypt an e-mail address on my .jsp side like :
crypted += String.fromCharCode (r.charCodeAt (i) + 1);
I would like to take out this javascript from my .jsp and implement in .java the same functionality.
So far I have done already this like:
crypttext += (myaddr.charAt(i))+1;
My question is, how can I have the same result in .java as I have in the .javascript?
Thank you in advance!