My resister works perfectly when passing back the form, but one that I built it passes back nothing. I am not sure what I am doing differently than the register page that visual studio provided. It calls the right http post method but the value passed is null. thanks for any help. I just want that model to post back to the controller action result.
Controller
[HttpGet]
public ActionResult Support()
{
ViewBag.Message = "Your app description page.";
return View();
}
[AllowAnonymous]
[HttpPost, ValidateSpamPrevention]
public ActionResult Support(QuickEmailModel email)
{
if (ModelState.IsValid)
{
return View("thankyou", email);
}
return View(email);
}
Model
public class QuickEmailModel
{
[DataType(DataType.EmailAddress)]
[EmailAddress]
public string Email { get; set; }
[Required]
public string Subject { get; set; }
[Required]
[DataType(DataType.MultilineText)]
public string Description { get; set; }
[Display(Name = "Company (Optional):")]
public string Company { get; set; }
}
}
Top of View
@using PoliteCaptcha
@model Models.QuickEmailModel
@{
ViewBag.Title = "Support";
}
Bottom where the form is
@using (Html.BeginForm())
{
@Html.ValidationSummary()
<div class="control-group">
<label class="control-label">
@Html.LabelFor(x => x.Company, "Company (Optional):", new { @class = "control-label" })</label>
<div class="controls">
@Html.TextBoxFor(x => x.Company, new { @class = "span4" })
</div>
</div>
<div class="control-group">
@Html.LabelFor(x => x.Email, "Email:", new { @class = "control-label" })
<div class="controls">
@Html.TextBoxFor(x => x.Email, new { @Class = "span4" })
</div>
</div>
<div class="control-group">
<label class="control-label">
@Html.LabelFor(x => x.Subject, "Subject:", new { @class = "control-label" })</label>
<div class="controls">
@Html.TextBoxFor(x => x.Subject, new { @class = "span4" })
</div>
</div>
<div class="control-group">
<label class="control-label">
@Html.LabelFor(x => x.Subject, "Description:", new { @class = "control-label" })</label>
<div class="controls">
@Html.TextAreaFor(x => x.Description, new { @class = "span4", @rows = "6", id = "txtDescription" })
</div>
</div>
@Html.SpamPreventionFields()
<input type="submit" class="btn btn-success" id="btnSubmit" value="Submit" style="margin-right: 15em;
float: right;" />
}
ValidateSpamPrevention? – Mystere Man Sep 27 '12 at 21:56