Home > Software engineering >  Show text data in div
Show text data in div

Time:07-16

I am working on the C# ASP.Net MVC project. I use Entity Framework for crud stuff. I am trying to show a text from my database in a div but not list type. I want to manage my index page content and title. I can do crud stuff but I don't know how can I show data in a div can you help me?

CodePudding user response:

if I understand correctly you want to add c# code in Html tags don't forget to use the @ for c#

<div>
      <p>@user.FirstName</p>
</div>

  • Related