如何设置@ Html.EditorFor(model => model.location)的默认值?

时间:2011-07-19 08:46:21

标签: asp.net-mvc-3 html5 model default-value

我试图添加新的{@Value =“test”},但失败了。

然后我将模型修改为

    private string _location = string.Empty;

    public string location { get { return _location; } set { _location = value; } }

甚至将string.empty更改为我的默认文本,但仍然失败。

任何想法? THX

2 个答案:

答案 0 :(得分:3)

你的解决方案很好,它应该有效。但是因为它没有,我认为你将null模型传递给你的视图 - 在这种情况下,它永远不会得到评估位置,它的null。尝试将非空模型传递给您的视图。

return View(new LocationViewModel());

答案 1 :(得分:0)

使用以下来源尝试您的解决方案,它对我来说很好。

模型

public class LocationViewModel
{
    private string _location = "test";

    public string Location
    {
        get { return _location; }
        set { _location = value; }
    }
}

动作

    public ActionResult Index()
    {
        ViewBag.Message = "Welcome to ASP.NET MVC!";
        return View(new LocationViewModel());
    }

查看

@model LocationViewModel

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm()) {
    @Html.ValidationSummary(true)
    <fieldset>
        <legend>Test</legend>

        <div class="editor-label">
            @Html.LabelFor(model => model.Location)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Location)
            @Html.ValidationMessageFor(model => model.Location)
        </div>

        <p>
            <input type="submit" value="Create" />
        </p>
    </fieldset>
}

<div>
    @Html.ActionLink("Back to List", "Index")
</div>