テキストボックスから特殊文字 (%,&,/,",'
など) を除外する必要があります
出来ますか?key_press イベントを使用する必要がありますか?
string one = radTextBoxControl1.Text.Replace("/", "");
string two = one.Replace("%", "");
//more string
radTextBoxControl1.Text = two;
このモードでは非常に長い =(