UwakPeter
UwakPeter

Reputation: 341

Is there a template engine for Visual studio (MVC 5 framework)?

i am currently working on a project using VS 2013 MVC 5, i have been asked to use a template, i am trying to find out, is there a template tool/engine for visual studio mvc? something similar to Thymeleaf for eclipse mvc.

Thanks

Upvotes: 1

Views: 1364

Answers (2)

ChrisRun
ChrisRun

Reputation: 993

There is a default template in VS when creating an MVC Application, which is basically a working application with basic features and login. Bare in mind, this is a simple "Hello World!" project, but it's a good place to start your application.

I recommend this tutorial:

http://www.asp.net/mvc/overview/getting-started/introduction/getting-started

/ChrisRun

Upvotes: 2

R Day
R Day

Reputation: 972

The Razor view engine is built in to ASP.NET MVC 5. You are also able to plugin alternatives should you wish.

Upvotes: 1

Related Questions