views:

164

answers:

2

Recently, I was working with PHP.
In PHP we have a powerful template engine like Smarty.

Do we have something like Smarty in ASP.NET ?

+1  A: 

Quick google search :

Try one of these :) http://csharp-source.net/open-source/template-engines

M.Shuwaiee
Thanks. I've been seen this web page before. But I'm looking for a Template Engine that is very simile to `Smarty`.
Mohammad
+1  A: 

Well, you could argue that all ASP.NET webform pages are similar to templates, as they don't need to (and usually don't) have any application logic within the .aspx pages (it all goes in the codebehind). However, you might find that ASP.NET MVC is even more like what you are familiar with. ASP.NET MVC supports a number of view engines, too.

Dan Diplo
Thanks broh. I'll try it.
Mohammad