ASP.NET(vb.net) AccessDataSource & DataBind Example code how to use ASP.NET and AccessDataSource for create DataSource and bind data to GridView (for Code)
ShotDev Focus:
- ASP.NET(vb.net) AccessDataSource & DataBind
Example
AspNetAccessDataSourceDataBind.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim myDSource As New AccessDataSource With myDSource .DataFile = "~/database/mydatabase.mdb" .SelectCommand = "SELECT * FROM [customer]" End With Me.myGridView.DataSource = myDSource Me.myGridView.DataBind() End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <asp:GridView id="myGridView" runat="server" AutoGenerateColumns="True"></asp:GridView> </form> </body> </html>
Create a asp.net file and save to path root-path/dotnet/
Run
http://localhost/dotnet/AspNetAccessDataSourceDataBind.aspx
Screenshot