All you need to do is put a <asp:Literal... /> control in your aspx page in the spot where you want to put database data...
From there you call your database connection and populate the Literal control
I am using .NET 3.5 and Linq, so mine looks like this
'Query the database
Dim _ID As Integer = CInt(Request.QueryString("ID"))
Dim dc As New DAL.PageDataContext
Dim results = dc.bt_Page_GetByID(_ID).FirstOrDefault
Literal1.Text = results.PageContent
Chase

Visual Studio 2008
ASP.NET 3.5 (Visual Basic)
SQL Server Express
Check out my blog