Possible Duplicate:
Does anyone beside me just NOT get ASP.NET MVC?
I dont know ASP.NET very well ATM. I took a look at MVC 2 in 2010 beta2 and notice my host will not support it. Since my app is heavily backend base and a light interface i thought regular ASP.NET should do a find job.
In either case i find it extremely annoying to write
<div>
<% foreach(var link in Html.Encode(ViewData["Links"])) { %>
<a href="<%=link%>"><%=link%></a><br>
<% } %>
<div>
I find it a lot easier to use Response.Write or to return a string with the html inside a @"" string. This example is simplified, i have some fairly complex data to display. Am i missing something or should i write any complex html in my C# source code?