in create razor
 
@model blogdemo1.Models.Blog
@{
ViewBag.Title = "Create";
}

Create

@using (Html.BeginForm("Create","Blog"))
{
@Html.LabelFor(m=>m.Title)
@Html.TextBoxFor(m=>m.Title,new { @class = "form-control"})
@Html.LabelFor(m => m.Author)
@Html.TextBoxFor(m => m.Author, new { @class = "form-control" })
@Html.LabelFor(m => m.Content)
@Html.TextAreaFor(m => m.Content, new { @class = "form-control" })
}
 
 how to save textbox n textarea in draft page