I have a c# function which converts all non-english characters to proper characters for a given text. like as follows
public static string convertString(stri
It's certainly possible to convert it...
ToLower -> toLowerCase, Replace => replace, Length => length
You'd have to code up IndexOfAny, but that's no big deal. But here's my question - why bother to do it client side? Why not call back to the server and execute the code all in one place? I do a lot of stuff like this. Check out the following link:
http://aspalliance.com/1922
It explains a way to bind, client-side, to server-side methods.