ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.
ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and gives you full control over markup for enjoyable, agile development.
NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
You can easily find a web hosting company that offers the right mix of features and price for your applications.
| '@Html.NameForModel()' | '@Html.ValueForModel()' | |
| '@Html.Name("Name")' | '@Html.Value("Name")' | |
| '@Html.NameFor(m => m.Address)' | '@Html.ValueFor(m => m.Address)' | |
| '@Html.Name("Anon.Address.Street")' | '@Html.Value("Anon.Address.Street")' |
| '@Html.Display("Name")' | |
| '@Html.Display("Dependent.Name")' | |
| '@Html.Display("Alive")' | |
| '@Html.Display("Dependent.Alive")' | |
| '@Html.Display("Age")' | |
| '@Html.Display("GPA")' |
| '@Html.DisplayFor(model => model.Name)' | |
| '@Html.DisplayFor(model => model.Dependent.Name)' | |
| '@Html.DisplayFor(model => model.Alive)' | |
| '@Html.DisplayFor(model => model.Dependent.Alive)' | |
| '@Html.DisplayFor(model => model.Age)' | |
| '@Html.DisplayFor(model => model.GPA)' |