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 =(
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…