我需要在评论文本区域中显示有关它正在咨询的属性的 ID,我从视图详细信息中获取它,其中有一个按钮“咨询”。
在详细信息视图中:
<a class="btn btn-primary" href="@Url.Action("Contact", "Home", new {PropertyId = @Model.PropertyModel.Property.PropertyId})#consult">
<i class="icon-envelope">
</i>
@Resources.Property.Details.Consulta
</a>
在 HomeController 中:
public ActionResult Contact(string PropertyId)
{
UserRepository userRepository = new UserRepository();
User user = userRepository.GetUserByEmail(User.Identity.Name);
ContactModel model = new ContactModel(user);
model.Comment = PropertyId;
return View(model);
}
在 ContactModel 中:
[Required]
[Display(Name = "Comment", ResourceType = typeof(Resources.Entities.Names))]
public string Comment { get; set; }
在 Contact.cshtml 中:
<div class="control-group">
@Html.LabelFor(m => m.Comment, new { @class = "control-label" })
<div class="controls">
@Html.TextAreaFor(m => m.Comment, new {@rows = "6", @style="width:80%;"})
@Html.ValidationMessageFor(m => m.Comment)
</div>
</div>
你知道如何让它工作吗?