<div class="form-gridcontrol">
<label>Notes</label>
@Html.CustomTextArea(m => m.Notes)
</div>
In ASP.NET MVC , I have created a custom textarea and inputing/displaying data from the database using a Model.Above is the code where you can see the Notes are getting assigned to @Html.CustomTextArea. I have a situation where , I need to display a text "Not Applicable" if there is no value in "m.Notes" How I should right the logic in the above code? Please guide.