asp.net mvc - Does MVC Razor generate HTML for the template in the view on client side or server side? -


i want understand razor view engine generates html templates create in view. example see following code snippet,

<ul id="products" >  <% foreach(var p in products) { %>    <li><%=p.name%> ($<%=p.price%>)</li> <% } %>  </ul> 

i wanted understand if processing generate resultant html done in browser or web server.

i want understand razor view engine generates html templates create in view

it happens on web server. once html created on web server, html sent client browser.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -