1
SchoolManagement
アプリケーションを作成中です。StudentRegistration
フォームを作成する必要があります。フォームページで私はDropdownlist
も表示する必要がありますが、これもデータベースから来ます。私はasp.netで非常に簡単でしたが、MVCで私はそれを行う方法がわかりません。私はAdo.net
とRazorビューエンジンを使用しています。誰かがそれに必要なステップを案内してください。 これは、あなたのドロップダウンを記入しますアクションメソッドを作成する必要がASP MVCアクセスデータベースからのドロップダウンリスト
public class StudentModel
{
[Required(ErrorMessage="Student ID is required", AllowEmptyStrings=false)]
public int StudentID { get; set; }
[Required(ErrorMessage = "Student Roll No is required", AllowEmptyStrings = false)]
public int RollNo { get; set; }
[Required(ErrorMessage = "Student Name is required", AllowEmptyStrings = false)]
public string StudentName { get; set; }
[Required(ErrorMessage = "Student Address is required", AllowEmptyStrings = false)]
public string Address { get; set; }
[Required(ErrorMessage = "Student Cell is required", AllowEmptyStrings = false)]
public string Cell { get; set; }
}