ADO Database ASP.Net

<%@ Page Language=VB Debug=true %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OLEDB" %>

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Not IsPostBack Then
        Dim DBConn as OleDbConnection
        Dim DBCommand As OleDbDataAdapter
        Dim DSPageData as New DataSet
        DBConn = New OleDbConnection( _
            "PROVIDER=Microsoft.Jet.OLEDB.4.0;" _
            & "DATA SOURCE=" _
            & Server.MapPath("EmployeeDatabase.mdb;"))
        DBCommand = New OleDbDataAdapter _
            ("Select ID, FirstName " _
            & "From Employee " _
            & "Order By FirstName", DBConn)
        DBCommand.Fill(DSPageData, _
            "Employee")
        repDepts.DataSource = _
            DSPageData.Tables("Employee").DefaultView
        repDepts.DataBind()
    End If
End Sub



Creating a Basic Repeater Control



    id="repDepts" 
    runat="server" 
>
    
        Below is a list of all the employee.


    

    
        <%# "Department: " _
            & DataBinder.Eval(Container.DataItem, "ID") _
            & " - " _
            & DataBinder.Eval(Container.DataItem, "FirstName") 
        %>
        

    

    
        <%# "Department: " _
            & DataBinder.Eval(Container.DataItem, "ID") _
            & " - " _
            & DataBinder.Eval(Container.DataItem, "FirstName") 
        %>

        

    

    
        

    

    
        
All records have been displayed.
    
    




           
       
EmployeeDatabase.zip( 10 k)