I need exclude special characters (%,&,/,",'
etc ) from textbox
Is it possible? Should I use key_press event?
string one = radTextBoxControl1.Text.Replace("/", "");
string two = one.Replace("%", "");
//more string
radTextBoxControl1.Text = two;
in this mode is very very long =(