<code>Sv: Anslut till en databas?
Dim ObjConnection As New SqlClient.SqlConnection("<Connection String Here>")
Dim ObjCommand As New SqlClient.SqlCommand("Select * From Customers",
ObjConnection)
Dim DataAdapter As New Data.SqlClient.SqlDataAdapter(ObjCommand)
Dim ds As New DataSet()
DataAdapter.Fill(ds)
DataGrid1.DataSource = ds
DataGrid1.DataBind()
</code>
La till kod för att fylla en datagrid också
Du behöver även lägga till nedanstående Imports:
<code>
Import Namespace=System.Data
Import Namespace=System.Data.SQLClient
</code>