I am trying to pass sub object in a partial view to another, and I always get the error. Can anyone help me to solve this? T.T
"The model item passed into the dictionary is of type 'Application.Models.PetModel', but this dictionary requires a model item of type 'Application.Models.Calendar'"
Main model
public class PetModel
{
public string Name { get; set; }
public long SpeciesID { get; set; }
public long BreedID { get; set; }
public Calendar DOB { get; set; }
}
Sub Model
public class Calendar
{
public int Day { get; set; }
public int Month { get; set; }
public int Year { get; set; }
public DateTime DateObj
{
get
{
if (Day != 0 && Month != 0 && Year != 0)
{
return new DateTime(Year, Month, Day);
}
return DateTime.Now;
}
set
{
if (value != null)
{
Day = value.Day;
Month = value.Month;
Year = value.Year;
}
}
}
}
Main View
@model Application.Models.PetModel
@using (Html.BeginForm("CatchPetContent", "Quote",Model))
{
@Html.Partial("PetDetailsContent", Model)
<input type="submit" value="submit" />
}
PetDetailsContent Partial View
@model Application.Models.PetModel
@Html.TextBoxFor(x => x.Name)
@Html.DropDownListFor(x => x.SpeciesID, (IEnumerable<SelectListItem>)ViewData["TypeList"], "--Please Select--")
@Html.DropDownListFor(x => x.BreedID, (IEnumerable<SelectListItem>)ViewData["BreedList"], "--Please Select--")
@Html.RenderPartial("UserControl/Calendar", Model.DOB)
Calendar Partial view
@model Application.Models.Calendar
@Html.TextBoxFor(x => x.Day)
@Html.TextBoxFor(x => x.Month)
@Html.TextBoxFor(x => x.Year)