Reputation: 36984
I have following code:
var shpa = "<sprSec:authentication property="principal.username" />";
it renders to
var shpa = "mihailov-ta+spam33@ya.ru";
It is problem looks like escaping. it should be render like:
var shpa = "[email protected]";
How to encode it according my requirements ?
Upvotes: 0
Views: 449