How can I remove all white-spaces from ASP.NET MVC 3 output?
UPDATE: I know how can I use string.Replace method or Regular Expressions to remove w
Str = Str.Replace(" ", "");
should do the trick.