.NET中限制text只能输入中文,英文,数字和空格的代码,
什么环境?winform、WPF、还是HTML
<input onkeyup='this.value=this.value.replace(/[^\u4E00-\u9FA5\s\w]/ig,"")'/>