How do i prepopulate textarea with data from database (or any text for that matter) in ASP.Net?
Ok, so basically i have an form which edits data in my database. I have the following inputs: <input value="@title" type="text" asp-for="@Model.ProjName" class="form-control" placeholder="Ticket1" /> <textarea value="@description" type="text" asp-for="@Model.ProjDescription" class="form-control" rows="3"></textarea> I can pre-populate the input just fine, however value…