こんにちは、日付が必要なレポート モデルがあります。日付は、今日、昨日、または日付範囲のいずれかです。
public class DateModel
{
public bool Today { get; set; }
public bool Yesterday { get; set; }
public bool DateRange { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}
このモデルはビューにバインドされています。Today、Yesterday、DateRange のラジオ ボタンと、開始日と終了日のテキスト ボックス。
<tr>
<td>
@Html.RadioButton("SelectedDate", "Yes", true, new { postData= "Today" }) Today
</td>
</tr>
<tr>
<td>
@Html.RadioButton("SelectedDate", "No", false, new { postData= "Yesterday" }) Yesterday
</td>
</tr>
<tr>
<td>
@Html.RadioButton("SelectedDate", "No", false, new { postData= "CallDateRange" }) Call Date Range
</td>
</tr>
ビューがポストバックされたときに、どのラジオ ボタンが選択されたかを取得するにはどうすればよいですか?