Something like Smarty in ASP.NET?

I recently worked with PHP.
In PHP, we have a powerful template engine like Smarty .

Do we have something like Smarty in ASP.NET?

+5
source share
2 answers

Well, you could argue that all ASP.NET web pages are similar to templates, since they don't need (and usually don't) have any application logic on .aspx pages (everything goes in code.). However, you may find that ASP.NET MVC is more like what you are familiar with. ASP.NET MVC supports a number of view engines .

+2
source

All Articles