Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
share|improve this question

4 Answers

up vote 129 down vote accepted

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.Title)
    <input type="submit" value="OK" />
}
share|improve this answer
2  
Pretty much what I was looking for, but what if I need to specify the rows and cols html attributes? – Jason Feb 10 '11 at 2:51
1  
I am still getting [class="text-box single-line"] at the source code :( – Stavros Mar 21 '11 at 11:41
1  
This answer just helped me nearly two years after it was posted, +1! – JMK Nov 11 '12 at 20:13
Extremely knowledgeable and still keeping it as simple as it gets and explains everything step by step. hail @Darin Dimitrov. – Ismet Alkan Apr 4 at 5:21
@Html.TextAreaFor(model => model.Text)
share|improve this answer
1  
I like this method better because the popular answer here involves modifying the database model, which means you have to drop and recreate the underlying database if using EntityFramework. – CiaranG Mar 28 at 18:13

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.

share|improve this answer

In this link you can see how to add rows and cols html attributes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.