@using (Html.BeginForm("L2PayOrderOpen", "Leve2Order", null, FormMethod.Post, new { Id = "CreateForm" }))
{
@Html.ValidationSummary(true)
@Html.LabelFor(m => m.userName)
@Html.TextBoxFor(m => m.userName)
@Html.ValidationMessageFor(m => m.userName)
@Html.LabelFor(m => m.businessType)
@Html.RadioButtonListFor(m => m.businessType, new List()
{
new SelectListItem
{
Text = "业务版",
Value = "2"
},
new SelectListItem
{
Text = "ZD",
Value = "1"
},
new SelectListItem
{
Text = "OEM",
Value = "3",
Selected = true
}
}, RepeatDirection.Vertical)
@Html.ValidationMessageFor(m => m.businessType)
客户ID:
手机号码:
@Html.TextBoxFor(m => m.mobile)
@Html.ValidationMessageFor(m => m.mobile)
@Html.LabelFor(m => m.fullName)
@Html.TextBoxFor(m => m.fullName)
@Html.ValidationMessageFor(m => m.fullName)
产品类型:
@Html.LabelFor(m => m.PayNo)
@Html.TextBoxFor(m => m.PayNo, htmlAttributes: new { Value = "auto" })
@Html.ValidationMessageFor(m => m.PayNo)
@Html.LabelFor(m => m.PayPrice)
@Html.TextBoxFor(m => m.PayPrice)
@Html.ValidationMessageFor(m => m.PayPrice)
开通天数:
@Html.LabelFor(m => m.PayType)
@Html.DropDownList("PayType", new List() {
new SelectListItem(){Text="银行转账",Value="3",Selected=true}})