textarea with @Html.EditorFor
I have ASP.NET MVC3 app and I have also form for add news. When VS2010 created default view I have only text inputs for string data, but I want to have textarea for news text. How I can do it with Razor syntax.
Text input look like this:
@Html.EditorFor(model => model.Text)
You could use the [DataType]
attribute on your view model like this:
public class MyViewModel
{
[DataType(DataType.MultilineText)]
public string Text { get; set; }
}
and then you could have a controller:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel());
}
}
and a view which does what you want:
@model AppName.Models.MyViewModel
@using (Html.BeginForm())
{
@Html.EditorFor(x => x.Text)
<input type="submit" value="OK" />
}
Someone asked about adding attributes (specifically, 'rows' and 'cols'). If you're using Razor, you could just do this:
@Html.TextAreaFor(model => model.Text, new { cols = 35, @rows = 3 })
That works for me. The '@' is used to escape keywords so they are treated as variables/properties.
@Html.TextAreaFor(model => model.Text)
链接地址: http://www.djcxy.com/p/60442.html
上一篇: MVC中应该如何构建模型?