0

我需要在评论文本区域中显示有关它正在咨询的属性的 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>

你知道如何让它工作吗?

4

1 回答 1

0

谢谢回答!问题是在名为注释的文本区域中没有出现 id 信息(我通过 url 操作提供给控制器)​​。我看不出我这样做的方式有什么问题。

于 2015-06-16T18:01:37.320 回答