I\'m using repeater to create dynamic ul li list
Is it possible to control class whether item is first or last?
Something like:
class=\"<%
If possible, I'd recommend using something like jQuery for this as it makes implementing this type of functionality very easy. For example, you could have something like this:
My Data $("table.MyRepeater tr:last").attr("class", "last");