How to display plain text instead of with HTMLText in textarea in ASP.Net Core
this is my view
<div class="form-group row">
<label asp-for="Decription" class="col-sm-3 col-form-label">Description</label>
<div class="col-sm-7">
<textarea type="text" asp-for="Decription" class="form-control"></textarea>
</div>
</div>
This is my View
How to display plain text in this textarea instead of HtmlText.