@model Project_Unite.Models.CreateTopicViewModel @{ ViewBag.Title = "Post reply"; }

Post reply

@using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.HiddenFor(Model => Model.Category)
Subject: @Html.TextBoxFor(Model=>Model.Subject, new{@class="form-control"})
@Html.DisplayNameFor(Model => Model.Body)

This is the content of your topic. You can use Markdown formatting to style your post.

@Html.TextAreaFor(Model => Model.Body, new { @class = "form-control", style = "width:100%", rows = "10" })
}