What should be the regular expression if i need to show the error if the string contains character other than letters, digits, blank, underscore (_), dash (-), dollar sign ($), at sign (@),open curly brace ({), close curly brace (}) and pound sign (#)
Regex.IsMatch(myString, ?????????, RegexOptions.IgnoreCase)
Thanks..