ADO Database ASP.Net

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

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Not IsPostBack Then
        Dim DBConn as SQLConnection
        Dim DBCommand As SQLDataAdapter
        Dim DSPageData as New DataSet
'        DBConn = New SQLConnection("server=localhost;" _
 '           & "Initial Catalog=TT;" _
  '          & "User Id=sa;" _
   '         & "Password=yourpassword;")
        DBConn = New SQLConnection("Data Source=whsql-v08.prod.mesa1.secureserver.net;Initial Catalog=DB_49907;User ID=rntsoftuser;Password='password';")
    
        DBCommand = New SQLDataAdapter _
            ("Select LastName + ', ' + FirstName " _
            & "as EmpName, ID " _
            & "From Employee " _
            & "Order By LastName, FirstName", DBConn)
        DBCommand.Fill(DSPageData, _
            "EmployeeNames")
        DBCommand = New SQLDataAdapter _
            ("Select * from Employee", DBConn)
        DBCommand.Fill(DSPageData, _
            "EmployeesAll")
        DBCommand = New SQLDataAdapter _
            ("Select LastName from Employee Where " _
            & "Salary > 25000", DBConn)
        DBCommand.Fill(DSPageData, _
            "Emp3")
        ddlEmps.DataSource = _
            DSPageData.Tables("EmployeeNames").DefaultView
        ddlEmps.DataBind()
        dgEmps2.DataSource = _
            DSPageData.Tables("EmployeesAll").DefaultView
        dgEmps2.DataBind()
        dgEmps3.DataSource = _
            DSPageData.Tables("Emp3").DefaultView
        dgEmps3.DataBind()
    End If
End Sub



Retrieving SQL Server Data






    id="ddlEmps"
    datatextfield="EmpName" 
    datavaluefield="ID"
    runat="server"
/>



    id="dgEmps2" 
    runat="server" 
    autogeneratecolumns="True"
>




    id="dgEmps3" 
    runat="server" 
    autogeneratecolumns="True"
>