net mvc3 application 私はチェックボックスを持っています:
<input type="checkbox" id="daStores" name="CheckBox1" onclick="filter()" />
コントローラーからチェックされているかどうかを取得するにはどうすればよいですか?
このようなもの
public ActionResult GoToPage(string page)
{
bool ischecked = //get the checked status from the view
}