-5
言語選択のためのドロップダウンメニューを作成したいと思います。これはMVCデータベースアプリケーションです。私は、ユーザーが複数の言語を選択できるようにしたいと思います。MVCの言語ドロップダウンメニュー
私が知りたいのは、自分のモデルをかみそりビューに接続する方法です。クラスのプロパティの上で私が使用できる属性の種類は何ですか?
これは私が持っているモデルクラスのスナップショットです:
public class CrewViewModel
{
// This is the date of birth property
[Required]
[DisplayName("Date of Birth")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-dd-mm}", ApplyFormatInEditMode = true)]
public DateTime DOB { get;
// Here goes the code for the Languages property
}
そして、何かみそりコードビューで使用します。
を動作するはずです私はSystem.NullReferenceExceptionを得続けます –