У меня есть одна контактная форма, которая отправляет электронное письмо на один из адресов, выбранных из dropDownList.Но при публикации формы DropDownList всегда недействителен.
Полная модель:
public class ContactModels
{
[Display(Name = "Nome")]
[Required(ErrorMessage = "Nome é obrigatório.")]
[StringLength(100, ErrorMessage = "Nome não pode conter mais de 100 caracteres.")]
public string Name { get; set; }
[Display(Name = "Empresa")]
public string Company { get; set; }
[Display(Name = "E-mail")]
[Required(ErrorMessage = "Endereço de email é obrigatório.")]
[RegularExpression("[a-z0-9_\\+-]+(\\.[a-z0-9_\\+-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*\\.([a-z]{2,4})$", ErrorMessage = "Email não é válido.")]
public string Email { get; set; }
[Display(Name = "Telefone")]
[Required(ErrorMessage = "Telefone é obrigatório.")]
[StringLength(15, ErrorMessage = "Nome não pode conter mais de 15 caracteres.")]
public string Fone { get; set; }
[Display(Name = "Mensagem")]
[Required(ErrorMessage = "O texto do email é obrigatório.")]
[StringLength(500, ErrorMessage = "Nome não pode conter mais de 500 caracteres.")]
public string Message { get; set; }
[Display(Name = "Anexo")]
public string filePath { get; set; }
[Display(Name = "Departamento")]
public IEnumerable<SelectListItem> dropDownitems
{
get
{
return new[] {
new SelectListItem { Text = "Comercial", Value = "1"},
new SelectListItem { Text = "Financeiro", Value = "2"},
new SelectListItem { Text = "Parceria", Value = "3"},
new SelectListItem { Text = "RH/Curriculos", Value = "4"}
};
}
}
}
Полный просмотр:
@model MvcAtakComBr.Models.ContactModels
@{
ViewBag.Title = "Contacts";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<script src="../../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script src="../../Scripts/MicrosoftMvcValidation.js" type="text/javascript"></script>
<div class="main_title">Contato</div>
@using (Html.BeginForm("Index", "contato", FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.ValidationSummary(true)
<div class="editor-label">
@Html.LabelFor(model => model.Name)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Company)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Company)
@Html.ValidationMessageFor(model => model.Company)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Email)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Email)
@Html.ValidationMessageFor(model => model.Email)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Fone)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Fone)
@Html.ValidationMessageFor(model => model.Fone)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.dropDownitems)
</div>
<div class="editor-field">
@Html.DropDownList("dropDownitems")
@Html.ValidationMessageFor(model => model.dropDownitems)
</div>
<div class="editor-label">
arquivo:
</div>
<div class="editor-field">
<input type="file" name="filePath" id="filePath" />
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Message)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.Message, new { cols = 35, rows = 5 })
@Html.ValidationMessageFor(model => model.Message)
</div>
<p>
<input type="submit" value="Enviar" />
</p>
}
Always ModelState.IsValid имеет значение False.это не принятие значения."Значение" address4@email.com "" недопустимо ". Я пытался заменить значение на число или одно слово и не удалось.
Заранее спасибо