I have to encode strings to remove parentheses for Ids for HTML elements.
Parentheses (these ones (
,)
) aren't valid in HTML Ids, are there standard strings (like those used in URLs) to use?
Is there an existing method that can be used in ASP.NET MVC?
N.B. System.Web.Mvc.HttpUtility.HtmlEncode(string)
, does not encode parentheses.