Iv'eは、htmlページのいくつかのドロップダウンからのいくつかの単純な入力を処理するための汎用ハンドラー(.ashx)を作成しました。データが有効であることを確認する必要があることを知っているので、次のコードを作成しました
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");
}
この入力を処理するためのより良い方法はありますか