我创建了一个通用处理程序 (.ashx) 来处理来自 html 页面中某些下拉列表的一些简单输入。我知道我应该检查数据以确保它有效,所以我创建了以下代码
string ProjectNumber = context.Request.Form["JobNumber"];
string ProjectShare = context.Request.Form["ProjectShare"];
if (ProjectNumber == null || ProjectNumber == string.Empty) {
throw new Exception("Project number cannot be empty or null");
}
if (ProjectShare == null || ProjectShare == string.Empty) {
throw new Exception("Project Share cannot be empty or null");
}
有没有更好的方法来处理这个输入