views:

7

answers:

0

It seems like such an easy thing to do, but im stumped.

I have a DAL & BLL. Within my BLL i have a the following function returning one video by its id

Public Function GetTrainingVideoById(ByVal id As Integer) As TPSupportDataSet.TraningVideosDataTable
    Return Adapter.KB_TRAININGVIDEO_S_ID(id)
End Function

Now on my aspx page i have a number of labels which i want to populate

Dim video As New TrainingVideoBLL()

LiteralVideoTitle.Text = ???
LiteralVideoLength.Text = ???

How do i bind to the controls?