Add a Repeater in your form.
User a AlternatingItemTemplate.
<Repeater>
<AlternatingItemTemplate>
<%#Eval("posttime")%>
</AlternatingItemTemplate>
<AlternatingItemTemplate>
<% GetTodayAlbum();%>
</AlternatingItemTemplate>
</Repeater>
posttime is an item in your data table and GetTodayAlbum() is a user-defined
function which can Write all information about the album today.That's not
easy.
A 2-column list is easy,you can use a Repeater, AlternatingItemTemplate can
fullfill this task.But can't print a datetime like the page given by you.
More about Repeater
http://msdn.microsoft.com/library/chs/default.asp?url=/library/chs/vbcon/html/vb
conintroductiontorepeaterwebcontrol.asp
> Hi
>
[quoted text clipped - 12 lines]
> Thanks
> Paul S