I have been using UrlRewriter.NET to perform some rewrites. Which was working OK for english texts, but for Unicode data it shows "???????"
So, is there any way I can make it work with unicode, too?
I have been using UrlRewriter.NET to perform some rewrites. Which was working OK for english texts, but for Unicode data it shows "???????"
So, is there any way I can make it work with unicode, too?
Yes, it can support. Use ENCODE. Tested on 2.0.0.9 version, from https://github.com/sethyates/urlrewriter
<rewrite url="/test.aspx/(.*)/$" to="/test.aspx?bla=${encode($1)}" processing="stop" />
This should work perfectly out of the box, I just ran a quick test using some Arabic characters and it seems to work correctly. A few things to check:
<?xml version="1.0" encoding="utf-8" ?>
If nothing else, can you post an example of this case which is rendering incorrectly?