Hi there,
Take a look at some of the code you didn't post. In BlogEntries.ascx.
vb you find this:
Code:
If Not Page.IsPostBack Then
LoadData()
End If
This means this code is only fired when the page initially loads, and not aftwerwards when you click one of the paging links.... Simply remove the check for IsPostBack....
Hope this helps,
Imar