Hi, I'm pretty new on asp.net and since i came from the Django framework, I don't know how to start, in Django we can define template tags like:
{% for o in some_list %}
<tr class="{% cycle rowvalue1 rowvalue2 %}">
...
</tr>
{% endfor %}
which is very useful to generate dynamic content based on a query or conditions, but in asp.net i didn't found nothing like this (only in the MVC), there is something to do this on asp.net? because i created a masterpage and a content page, so i want to generate a selection of the body on the content page.
Thanks
{% for o in some_list %}
<tr class="{% cycle rowvalue1 rowvalue2 %}">
...
</tr>
{% endfor %}
which is very useful to generate dynamic content based on a query or conditions, but in asp.net i didn't found nothing like this (only in the MVC), there is something to do this on asp.net? because i created a masterpage and a content page, so i want to generate a selection of the body on the content page.
Thanks