请问 mvc4 用到的 <select id="sel_mon如何封装到model

请问 mvc4 用到的 如何封装到model

select 标签里有个name,option里有个值,发起请求后他们是以:select_name=option_value的形式传递出去的,你说封装哪个;
就是select 的name;

如果回答对您有帮助,请采纳

        <%: Html.LabelFor(model => model.Birthday) %>

        <%: Html.EditorFor(model => model.Birthday) %>
        <%: Html.ValidationMessageFor(model => model.Birthday) %>


        <select id="sel_year" name="year" ></select>年
    <select id="sel_month"></select>月
    <select id="sel_day"></select>日

            如何将年月日封装到model中的birthday中?